@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap");
/* line 3, app/assets/stylesheets/landing/landing.sass */
.sign-in-card {
  background-color: #F9F9F9;
  box-shadow: 0px 1px 7px 0px #00000024;
  padding: 1.55rem;
  padding-top: 1.35rem;
  border: 1px solid rgba(110, 120, 140, 0.2);
  border-radius: 3px;
}

/* line 10, app/assets/stylesheets/landing/landing.sass */
.sign-in-card h1 {
  font-weight: 700;
  font-size: 26px;
  font-family: "Inter", sans-serif;
  color: #1E003F;
  margin-bottom: 0.3rem;
}

/* line 16, app/assets/stylesheets/landing/landing.sass */
.sign-in-card #sign-in {
  font-weight: 600;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  padding: 10px !important;
}

/* line 22, app/assets/stylesheets/landing/landing.sass */
#sign-in-card-container {
  max-width: 380px;
}

/* line 25, app/assets/stylesheets/landing/landing.sass */
input.form-check-input:checked {
  background-color: #1D274A;
  border-color: #1D274A;
}

@media only screen and (max-width: 1300px) {
  /* line 30, app/assets/stylesheets/landing/landing.sass */
  #sign-in-card-container {
    max-width: 370px;
  }
  /* line 33, app/assets/stylesheets/landing/landing.sass */
  .sign-in-card h1 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 400px) {
  /* line 37, app/assets/stylesheets/landing/landing.sass */
  #sign-in-card-container {
    max-width: 320px;
  }
  /* line 40, app/assets/stylesheets/landing/landing.sass */
  .sign-in-card h1 {
    font-size: 24px;
  }
  /* line 42, app/assets/stylesheets/landing/landing.sass */
  .sign-in-card #sign-in {
    font-size: 14px;
  }
}

@media only screen and (max-width: 350px) {
  /* line 46, app/assets/stylesheets/landing/landing.sass */
  #sign-in-card-container {
    max-width: 250px;
  }
  /* line 49, app/assets/stylesheets/landing/landing.sass */
  .sign-in-card h1 {
    font-size: 23px;
  }
  /* line 51, app/assets/stylesheets/landing/landing.sass */
  .sign-in-card #sign-in {
    font-size: 13px;
  }
  /* line 53, app/assets/stylesheets/landing/landing.sass */
  .sign-in-card #sub-heading {
    font-size: 13px;
  }
  /* line 55, app/assets/stylesheets/landing/landing.sass */
  a.form-label-link {
    position: relative !important;
  }
  /* line 57, app/assets/stylesheets/landing/landing.sass */
  #password-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
}

/* line 3, app/assets/stylesheets/conversations/conversations.sass */
.messenger {
  --conversations-w: calc(100% - 54px);
  --body-w: 100%;
  display: grid !important;
  grid-template-columns: var(--conversations-w) var(--body-w);
  grid-template-rows: minmax(0, 1fr);
  position: relative;
  transition: 0.2s ease-in-out;
}

/* line 7, app/assets/stylesheets/conversations/conversations.sass */
#selected-conversation:not([data-conversation-id]) + .messenger {
  --conversations-w: 100%;
  --body-w: 100%;
}

/* line 11, app/assets/stylesheets/conversations/conversations.sass */
.messenger[data-messenger-conversation-show-value="true"] {
  --conversations-translate: -30%;
  --body-translate: calc(-100% + 54px);
}

@media (min-width: 576px) {
  /* line 16, app/assets/stylesheets/conversations/conversations.sass */
  .messenger[data-messenger-conversation-show-value] {
    --conversations-w: 280px!important;
    --body-w: minmax(calc(100% - var(--conversations-w)), 1fr)!important;
    --conversations-translate: 0px;
    --body-translate: 0px;
  }
}

/* line 28, app/assets/stylesheets/conversations/conversations.sass */
.messenger__conversations, .messenger__body {
  height: 100%;
  overflow-y: scroll;
  transition: 0.2s ease-in-out;
}

/* line 34, app/assets/stylesheets/conversations/conversations.sass */
.messenger__conversations {
  transform: translateX(var(--conversations-translate));
}

/* line 37, app/assets/stylesheets/conversations/conversations.sass */
.messenger__body {
  z-index: 1;
  transform: translateX(var(--body-translate));
}

/* line 42, app/assets/stylesheets/conversations/conversations.sass */
.messenger[data-messenger-conversation-show-value="true"] .messenger__conversations-toggler .bi-view-list {
  display: block;
}

/* line 44, app/assets/stylesheets/conversations/conversations.sass */
.messenger[data-messenger-conversation-show-value="true"] .messenger__conversations-toggler .bi-arrow-bar-left {
  display: none;
}

/* line 47, app/assets/stylesheets/conversations/conversations.sass */
.messenger[data-messenger-conversation-show-value="false"] .messenger__conversations-toggler .bi-view-list {
  display: none;
}

/* line 49, app/assets/stylesheets/conversations/conversations.sass */
.messenger[data-messenger-conversation-show-value="false"] .messenger__conversations-toggler .bi-arrow-bar-left {
  display: block;
}

/* line 52, app/assets/stylesheets/conversations/conversations.sass */
.messenger-conversations,
.messenger-body {
  height: 100%;
  background-color: white;
}

/* line 57, app/assets/stylesheets/conversations/conversations.sass */
.messenger-conversations__header,
.messenger-body__header {
  display: grid;
  align-items: center;
  grid-gap: 10px;
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 10px;
  border-bottom: solid 1px #f4f5fc;
  background-color: #fff;
}

/* line 69, app/assets/stylesheets/conversations/conversations.sass */
.messenger-conversations:first-child {
  border-right: solid 1px #f4f5fc;
}

/* line 72, app/assets/stylesheets/conversations/conversations.sass */
.messenger-conversations:last-child {
  border-left: solid 1px #f4f5fc;
}

/* line 75, app/assets/stylesheets/conversations/conversations.sass */
.messenger-conversations__header {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 51px;
}

/* line 79, app/assets/stylesheets/conversations/conversations.sass */
.messenger-conversations__body {
  padding: 10px;
}

/* line 82, app/assets/stylesheets/conversations/conversations.sass */
.messenger-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* line 86, app/assets/stylesheets/conversations/conversations.sass */
.messenger-body__header {
  grid-template-columns: minmax(0, 1fr) repeat(auto-fit, minmax(0, auto));
  min-height: 51px;
}

/* line 90, app/assets/stylesheets/conversations/conversations.sass */
.messenger-body__header:empty {
  display: none;
}

/* line 93, app/assets/stylesheets/conversations/conversations.sass */
.messenger-body__status {
  margin: 0;
  font-size: 12px;
  line-height: 11px;
}

/* line 98, app/assets/stylesheets/conversations/conversations.sass */
.messenger-body__content {
  padding: 10px;
  overflow-x: hidden;
}

/* line 102, app/assets/stylesheets/conversations/conversations.sass */
.messenger-body__footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background-color: #fff;
  border-top: solid 1px #f4f5fc;
}

/* line 109, app/assets/stylesheets/conversations/conversations.sass */
.messenger-body__footer:empty {
  display: none;
}

/* line 112, app/assets/stylesheets/conversations/conversations.sass */
.messenger-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-gap: 5px;
  padding: 5px;
  align-items: end;
}

/* line 120, app/assets/stylesheets/conversations/conversations.sass */
.chat-list + .chat-list {
  margin-top: 20px;
}

/* line 123, app/assets/stylesheets/conversations/conversations.sass */
.chat-list__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

/* line 128, app/assets/stylesheets/conversations/conversations.sass */
.chat-list__item:not(:last-child) {
  border-bottom: solid 1px #f4f5fc;
}

/* line 131, app/assets/stylesheets/conversations/conversations.sass */
.chat-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-gap: 0 5px;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
}

/* line 139, app/assets/stylesheets/conversations/conversations.sass */
.chat-item--new-messagae:after {
  content: '';
  display: block;
  width: 6px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 5px;
  box-shadow: 0 0 0 2px white;
}

/* line 151, app/assets/stylesheets/conversations/conversations.sass */
.chat-item__avatar {
  grid-row-start: span 2;
}

/* line 155, app/assets/stylesheets/conversations/conversations.sass */
.chat-item__avatar .user-avatar-wrapper:after {
  display: none;
}

/* line 158, app/assets/stylesheets/conversations/conversations.sass */
.chat-item__last-date {
  grid-column-start: 3;
  margin: 3px 0 0;
  font-size: 12px;
  line-height: 1;
}

/* line 164, app/assets/stylesheets/conversations/conversations.sass */
.chat-item__title {
  grid-column-start: 2;
  margin: 0;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 172, app/assets/stylesheets/conversations/conversations.sass */
.chat-item__text {
  grid-column-start: 2;
  grid-column-end: 4;
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 184, app/assets/stylesheets/conversations/conversations.sass */
.message-group-end {
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: end;
  padding-left: 40px;
}

/* line 189, app/assets/stylesheets/conversations/conversations.sass */
.message-group-start {
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: start;
  padding-right: 40px;
}

/* line 194, app/assets/stylesheets/conversations/conversations.sass */
.messages {
  grid-column-start: span 2;
}

/* line 197, app/assets/stylesheets/conversations/conversations.sass */
.message-avatar-wrapper ~ .messages {
  grid-column-start: 2;
}

/* line 200, app/assets/stylesheets/conversations/conversations.sass */
.message-group-start .messages {
  justify-items: start;
}

/* line 203, app/assets/stylesheets/conversations/conversations.sass */
.message-group-end .messages {
  justify-items: end;
}

/* line 207, app/assets/stylesheets/conversations/conversations.sass */
.message-group-start .message {
  align-items: start;
}

/* line 210, app/assets/stylesheets/conversations/conversations.sass */
.message-group-end .message {
  align-items: end;
}

/* line 213, app/assets/stylesheets/conversations/conversations.sass */
.message:not(:first-child) .message-author-name, .message-group-end .message-author-name {
  display: none;
}

/* line 217, app/assets/stylesheets/conversations/conversations.sass */
#message-container {
  background-color: #F9F9F9;
}

/* line 221, app/assets/stylesheets/conversations/conversations.sass */
div.bg-light, li.bg-light {
  background-color: white !important;
}

/* line 224, app/assets/stylesheets/conversations/conversations.sass */
a.list-group-item.active {
  background-color: #1D274A;
  border-color: #1D274A;
}

/* line 229, app/assets/stylesheets/conversations/conversations.sass */
div.bg-primary {
  background-color: #1D274A !important;
}

/* line 233, app/assets/stylesheets/conversations/conversations.sass */
button.btn-soft-primary, button.btn-soft-primary:active, button.btn-soft-primary:focus, button.btn-soft-primary:hover {
  color: #DDA024;
  background-color: #F4EACD;
}

/* line 237, app/assets/stylesheets/conversations/conversations.sass */
button.btn:first-child:active {
  border-color: #DDA024;
}

/* line 240, app/assets/stylesheets/conversations/conversations.sass */
span.bg-primary {
  background-color: #1D274A !important;
}

/* line 243, app/assets/stylesheets/conversations/conversations.sass */
a.link-primary {
  color: #1D274A !important;
}

/* line 4, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.cisco-ready-data-dashbaord table tr td.summary-cell {
  background-color: rgba(231, 234, 243, 0.7);
  font-weight: bold;
  white-space: nowrap;
}

/* line 10, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.cisco-ready-data-dashbaord table tr td.summary-cell:hover .amount-info {
  visibility: visible !important;
}

/* line 13, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.cisco-ready-data-dashbaord .pagy-bootstrap-nav {
  position: sticky;
  left: 40%;
}

/* line 18, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.nested-cisco-ready-data-tabs ul {
  font-size: 13px;
}

/* line 20, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.nested-cisco-ready-data-tabs ul .nav-link {
  border-width: 2px;
}

/* line 25, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.cisco-ready-row .accordion-button, .accordion-table-row .accordion-button {
  background-color: transparent !important;
}

/* line 29, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.cisco-ready-row .accordion-button.no-padding, .accordion-table-row .accordion-button.no-padding {
  padding: 0 !important;
}

/* line 32, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.cisco-ready-row .accordion-button:after, .accordion-table-row .accordion-button:after {
  order: -1;
  margin-left: 0 !important;
  margin-right: 0.5em !important;
}

/* line 38, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.nested-table-row thead.thead-light th {
  background-color: transparent !important;
}

/* line 42, app/assets/stylesheets/dashboard/cisco-ready-data.sass */
.cisco-ready-ammount:hover .amount-info {
  visibility: visible !important;
}

/* line 1, app/assets/stylesheets/override-slimselect.sass */
.ss-main {
  padding: 0.6125rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #677788;
  border: 0.0625rem solid rgba(231, 234, 243, 0.7);
  border-radius: 0.3125rem;
}

/* line 10, app/assets/stylesheets/override-slimselect.sass */
.ss-main .ss-value-text {
  font-size: 14px !important;
  line-height: 1em !important;
}

/* line 2, app/assets/stylesheets/custom-data.sass */
.custom-data-container .import-file-heading {
  display: flex;
  justify-content: space-between;
}

/* line 8, app/assets/stylesheets/custom-data.sass */
.virtual-account-details .extra-column {
  font-style: italic;
  border-left: 1px dashed #dee2e6;
}

/* line 12, app/assets/stylesheets/custom-data.sass */
.virtual-account-details .table-responsive {
  position: relative;
}

/* line 17, app/assets/stylesheets/custom-data.sass */
.virtual-account-details table.table th:nth-child(13), .virtual-account-details table.table td:nth-child(13) {
  border-right: 1px dashed #dee2e6 !important;
}

/* line 21, app/assets/stylesheets/custom-data.sass */
.virtual-account-details table.table th:first-child, .virtual-account-details table.table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

/* line 27, app/assets/stylesheets/custom-data.sass */
.virtual-account-details table.table .accordion-table-row td:first-child {
  background-color: #fff !important;
}

/* line 30, app/assets/stylesheets/custom-data.sass */
.virtual-account-details table.table .nested-table-row td:first-child {
  background-color: inherit !important;
}

/* line 32, app/assets/stylesheets/custom-data.sass */
.virtual-account-details table.table .nested-table-row th:first-child {
  background-color: #e7eaf3 !important;
}

/* line 34, app/assets/stylesheets/custom-data.sass */
.virtual-account-details table.table .nested-table-row thead {
  z-index: 3;
}

/* line 37, app/assets/stylesheets/custom-data.sass */
.virtual-account-details thead.nested-table-header {
  position: sticky;
  top: 60px;
  z-index: 3;
  background-color: #e7eaf3;
}

/* line 1, app/assets/stylesheets/enterprise-comparison.sass */
.vertical-line {
  border-right: 1px solid lightgrey;
}

/* line 1, app/assets/stylesheets/resource.sass */
.truncate-text {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
}

/* line 3, app/assets/stylesheets/multistep.sass */
.progress-container {
  position: relative;
  padding-top: 40px;
}

/* line 7, app/assets/stylesheets/multistep.sass */
.progress-container .progress-bar {
  width: 90%;
  height: 1px;
  background: gray;
  position: absolute;
  top: 60px;
  margin: 0 5%;
}

/* line 15, app/assets/stylesheets/multistep.sass */
.progress-container .progress-bar .progress {
  width: 100%;
  height: 100%;
  background: #6ABF4B;
  transform: scaleX(0);
  transform-origin: 0;
  transition: 0.3s;
}

/* line 23, app/assets/stylesheets/multistep.sass */
.progress-container .steps {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

/* line 29, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

/* line 36, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 8px;
  border: 1px solid gray;
}

/* line 48, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step .label {
  font-size: 0.9rem;
}

/* line 51, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step .label .state {
  font-size: 0.8rem;
  color: green;
}

/* line 55, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step .label .date {
  font-size: 0.75rem;
  color: #555;
}

/* line 59, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step.completed .circle {
  border: none;
  background: #6ABF4B;
  color: #fff;
}

/* line 64, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step.current .circle {
  border: 6px solid #6ABF4B;
  background: #fff;
  color: #6ABF4B;
  scale: 1.5;
}

/* line 69, app/assets/stylesheets/multistep.sass */
.progress-container .steps .step.current .label {
  color: #25282A;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
}

/* line 1, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart {
  flex: 1 1 200px;
  text-align: center;
}

@media (max-width: 768px) {
  /* line 1, app/assets/stylesheets/gauge_chart.sass */
  .gauge-chart {
    flex-basis: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  /* line 1, app/assets/stylesheets/gauge_chart.sass */
  .gauge-chart {
    flex-basis: 100%;
  }
}

/* line 11, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .chart-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 17, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .gauge-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto 0;
  position: relative;
}

@media (max-width: 768px) {
  /* line 17, app/assets/stylesheets/gauge_chart.sass */
  .gauge-chart .gauge-wrapper {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 576px) {
  /* line 17, app/assets/stylesheets/gauge_chart.sass */
  .gauge-chart .gauge-wrapper {
    width: 120px;
    height: 120px;
  }
}

/* line 31, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .gauge-wrapper .gauge-background {
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 36, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .gauge-wrapper .gauge-background .gauge-marker {
  position: absolute;
  font-weight: 500;
  color: #666;
  z-index: 5;
  background: none;
  padding: 0;
  border-radius: 0;
}

/* line 45, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .gauge-wrapper .gauge-background .gauge-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: center bottom;
  transition: transform 0.5s ease-out;
}

/* line 54, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .gauge-wrapper .gauge-background .gauge-needle .needle-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 65, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .gauge-wrapper .gauge-background .gauge-needle .needle-pointer {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 65px;
  background-color: #000;
  transform: translate(-50%, -100%);
  transform-origin: 50% 100%;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

/* line 76, app/assets/stylesheets/gauge_chart.sass */
.gauge-chart .gauge-wrapper .gauge-value {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-license {
  z-index: 1000;
  padding: 20px;
  font-size: 14px;
  color: #222222;
  background-color: #FFF;
  border-radius: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-element, .fr-element:focus {
  outline: 0 solid transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view.fr-element-scroll-visible {
  overflow-x: visible !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box.fr-basic {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box.fr-basic .fr-element {
  font-family: sans-serif;
  color: #414141;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: auto;
  min-height: 60px;
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box.fr-basic.fr-rtl .fr-element {
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-element {
  background: transparent;
  position: relative;
  z-index: 2;
  -webkit-user-select: auto;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-element a {
  user-select: auto;
  -o-user-select: auto;
  -moz-user-select: auto;
  -khtml-user-select: auto;
  -webkit-user-select: auto;
  -ms-user-select: auto;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-element.fr-disabled {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-element [contenteditable="true"] {
  outline: 0 solid transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box a.fr-floating-btn {
  -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 40px;
  width: 40px;
  text-align: center;
  background: #FFF;
  color: #333333;
  -webkit-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  outline: none;
  left: 0;
  top: 0;
  line-height: 40px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  text-align: center;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box a.fr-floating-btn svg {
  -webkit-transition: transform 0.2s ease 0s;
  -moz-transition: transform 0.2s ease 0s;
  -ms-transition: transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
  fill: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box a.fr-floating-btn i, .fr-box a.fr-floating-btn svg {
  font-size: 14px;
  line-height: 40px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box a.fr-floating-btn.fr-btn + .fr-btn {
  margin-left: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box a.fr-floating-btn:hover {
  background: #ebebeb;
  cursor: pointer;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box a.fr-floating-btn:hover svg {
  fill: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box .fr-visible a.fr-floating-btn {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
iframe.fr-iframe {
  width: 100%;
  border: none;
  position: relative;
  display: block;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-wrapper {
  position: relative;
  z-index: 1;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-wrapper::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-wrapper .fr-placeholder {
  position: absolute;
  font-size: 14px;
  color: #AAA;
  font-family: sans-serif;
  z-index: 1;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-wrapper.show-placeholder .fr-placeholder {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-wrapper ::-moz-selection {
  background: rgba(181, 214, 253, 0.8);
  color: #000;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-wrapper ::selection {
  background: rgba(181, 214, 253, 0.8);
  color: #000;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box.fr-basic .fr-wrapper {
  background: #FFF;
  border: 1px solid #CCCCCC;
  border-bottom-color: #efefef;
  top: 0;
  left: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box.fr-basic.fr-top .fr-wrapper {
  border-top: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box.fr-basic.fr-bottom .fr-wrapper {
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

@media (min-width: 992px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-box.fr-document {
    min-width: 21cm;
  }
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-box.fr-document .fr-wrapper {
    text-align: left;
    padding: 30px;
    min-width: 21cm;
    background: #efefef;
  }
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-box.fr-document .fr-wrapper .fr-element {
    text-align: left;
    background: #FFF;
    width: 21cm;
    margin: auto;
    min-height: 26cm !important;
    padding: 1cm 2cm;
    overflow: visible;
    z-index: auto;
  }
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-box.fr-document .fr-wrapper .fr-element hr {
    margin-left: -2cm;
    margin-right: -2cm;
    background: #efefef;
    height: 1cm;
    outline: none;
    border: none;
  }
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-box.fr-document .fr-wrapper .fr-element img {
    z-index: 1;
  }
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #222222;
  color: #FFF;
  font-size: 11px;
  line-height: 22px;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-transition: opacity 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  left: -3000px;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  z-index: 2147483647;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-tooltip.fr-visible {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-btn-wrap, .fr-popup .fr-btn-wrap, .fr-modal .fr-btn-wrap {
  float: left;
  white-space: nowrap;
  position: relative;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-btn-wrap.fr-hidden, .fr-popup .fr-btn-wrap.fr-hidden, .fr-modal .fr-btn-wrap.fr-hidden {
  display: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn, .fr-popup .fr-command.fr-btn, .fr-modal .fr-command.fr-btn {
  background: transparent;
  color: #333333;
  -moz-outline: 0;
  outline: none;
  border: 0;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  margin: 4px 2px;
  padding: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  z-index: 2;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  float: left;
  height: 40px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-options, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-options, .fr-modal .fr-command.fr-btn.fr-dropdown.fr-options {
  border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-btn-hover, .fr-popup .fr-command.fr-btn.fr-btn-hover, .fr-modal .fr-command.fr-btn.fr-btn-hover {
  border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn::-moz-focus-inner, .fr-popup .fr-command.fr-btn::-moz-focus-inner, .fr-modal .fr-command.fr-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-btn-text, .fr-popup .fr-command.fr-btn.fr-btn-text, .fr-modal .fr-command.fr-btn.fr-btn-text {
  width: auto;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn i, .fr-toolbar .fr-command.fr-btn svg, .fr-popup .fr-command.fr-btn i, .fr-popup .fr-command.fr-btn svg, .fr-modal .fr-command.fr-btn i, .fr-modal .fr-command.fr-btn svg {
  display: block;
  text-align: center;
  float: none;
  margin: 8px 7px;
  width: 24px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn svg.fr-svg, .fr-popup .fr-command.fr-btn svg.fr-svg, .fr-modal .fr-command.fr-btn svg.fr-svg {
  height: 24px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn svg path, .fr-popup .fr-command.fr-btn svg path, .fr-modal .fr-command.fr-btn svg path {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  fill: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn span.fr-sr-only, .fr-popup .fr-command.fr-btn span.fr-sr-only, .fr-modal .fr-command.fr-btn span.fr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn span, .fr-popup .fr-command.fr-btn span, .fr-modal .fr-command.fr-btn span {
  font-size: 14px;
  display: block;
  line-height: 17px;
  min-width: 30px;
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  height: 17px;
  font-weight: bold;
  padding: 0 4px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn img, .fr-popup .fr-command.fr-btn img, .fr-modal .fr-command.fr-btn img {
  margin: 8px 7px;
  width: 24px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-btn-active-popup, .fr-popup .fr-command.fr-btn.fr-btn-active-popup, .fr-modal .fr-command.fr-btn.fr-btn-active-popup {
  background: #d6d6d6;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection span, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection span, .fr-modal .fr-command.fr-btn.fr-dropdown.fr-selection span {
  font-weight: normal;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown i, .fr-toolbar .fr-command.fr-btn.fr-dropdown span, .fr-toolbar .fr-command.fr-btn.fr-dropdown img, .fr-toolbar .fr-command.fr-btn.fr-dropdown svg, .fr-popup .fr-command.fr-btn.fr-dropdown i, .fr-popup .fr-command.fr-btn.fr-dropdown span, .fr-popup .fr-command.fr-btn.fr-dropdown img, .fr-popup .fr-command.fr-btn.fr-dropdown svg, .fr-modal .fr-command.fr-btn.fr-dropdown i, .fr-modal .fr-command.fr-btn.fr-dropdown span, .fr-modal .fr-command.fr-btn.fr-dropdown img, .fr-modal .fr-command.fr-btn.fr-dropdown svg {
  margin-left: 3px;
  margin-right: 11px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown:after, .fr-popup .fr-command.fr-btn.fr-dropdown:after, .fr-modal .fr-command.fr-btn.fr-dropdown:after {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333333;
  right: 2px;
  top: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  content: "";
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active, .fr-modal .fr-command.fr-btn.fr-dropdown.fr-active {
  fill: #333333;
  background: #d6d6d6;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover, .fr-modal .fr-command.fr-btn.fr-dropdown.fr-active:hover {
  background: #ebebeb;
  fill: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover::after, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover::after, .fr-modal .fr-command.fr-btn.fr-dropdown.fr-active:hover::after {
  border-top-color: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:after, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:after, .fr-modal .fr-command.fr-btn.fr-dropdown.fr-active:after {
  border-top: 0;
  border-bottom: 4px solid #222222;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-disabled, .fr-popup .fr-command.fr-btn.fr-disabled, .fr-modal .fr-command.fr-btn.fr-disabled {
  color: #bdbdbd;
  cursor: default;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-disabled::after, .fr-popup .fr-command.fr-btn.fr-disabled::after, .fr-modal .fr-command.fr-btn.fr-disabled::after {
  border-top-color: #bdbdbd;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-hidden, .fr-popup .fr-command.fr-btn.fr-hidden, .fr-modal .fr-command.fr-btn.fr-hidden {
  display: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-tabs .fr-command.fr-btn, .fr-popup .fr-tabs .fr-command.fr-btn, .fr-modal .fr-tabs .fr-command.fr-btn {
  margin: 0;
  width: 46px;
  height: 40px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-tabs .fr-command.fr-btn.fr-active:not(:hover):not(:focus), .fr-toolbar .fr-tabs .fr-command.fr-btn.fr-active-tab:not(:hover):not(:focus), .fr-popup .fr-tabs .fr-command.fr-btn.fr-active:not(:hover):not(:focus), .fr-popup .fr-tabs .fr-command.fr-btn.fr-active-tab:not(:hover):not(:focus), .fr-modal .fr-tabs .fr-command.fr-btn.fr-active:not(:hover):not(:focus), .fr-modal .fr-tabs .fr-command.fr-btn.fr-active-tab:not(:hover):not(:focus) {
  background: #FFF;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-tabs .fr-command.fr-btn span, .fr-popup .fr-tabs .fr-command.fr-btn span, .fr-modal .fr-tabs .fr-command.fr-btn span {
  height: 27px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-tabs .fr-command.fr-btn img, .fr-toolbar .fr-tabs .fr-command.fr-btn svg, .fr-popup .fr-tabs .fr-command.fr-btn img, .fr-popup .fr-tabs .fr-command.fr-btn svg, .fr-modal .fr-tabs .fr-command.fr-btn img, .fr-modal .fr-tabs .fr-command.fr-btn svg {
  margin: 8px 11px;
  width: 24px;
  height: 24px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-toolbar .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-toolbar .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-popup .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-popup .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-popup .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-modal .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-modal .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-modal .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path {
  fill: #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-disabled .fr-btn, .fr-toolbar.fr-disabled .fr-btn.fr-active, .fr-popup.fr-disabled .fr-btn, .fr-popup.fr-disabled .fr-btn.fr-active, .fr-modal.fr-disabled .fr-btn, .fr-modal.fr-disabled .fr-btn.fr-active {
  color: #bdbdbd;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-disabled .fr-btn.fr-dropdown::after, .fr-toolbar.fr-disabled .fr-btn.fr-active.fr-dropdown::after, .fr-popup.fr-disabled .fr-btn.fr-dropdown::after, .fr-popup.fr-disabled .fr-btn.fr-active.fr-dropdown::after, .fr-modal.fr-disabled .fr-btn.fr-dropdown::after, .fr-modal.fr-disabled .fr-btn.fr-active.fr-dropdown::after {
  border-top-color: #bdbdbd;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-rtl .fr-btn-grp.fr-float-left, .fr-popup.fr-rtl .fr-btn-grp.fr-float-left, .fr-modal.fr-rtl .fr-btn-grp.fr-float-left {
  float: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-rtl .fr-btn-grp.fr-float-right, .fr-popup.fr-rtl .fr-btn-grp.fr-float-right, .fr-modal.fr-rtl .fr-btn-grp.fr-float-right {
  float: left;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-rtl .fr-command.fr-btn, .fr-toolbar.fr-rtl .fr-btn-wrap, .fr-popup.fr-rtl .fr-command.fr-btn, .fr-popup.fr-rtl .fr-btn-wrap, .fr-modal.fr-rtl .fr-command.fr-btn, .fr-modal.fr-rtl .fr-btn-wrap {
  float: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-rtl .fr-command.fr-btn.fr-dropdown.fr-options, .fr-toolbar.fr-rtl .fr-btn-wrap.fr-dropdown.fr-options, .fr-popup.fr-rtl .fr-command.fr-btn.fr-dropdown.fr-options, .fr-popup.fr-rtl .fr-btn-wrap.fr-dropdown.fr-options, .fr-modal.fr-rtl .fr-command.fr-btn.fr-dropdown.fr-options, .fr-modal.fr-rtl .fr-btn-wrap.fr-dropdown.fr-options {
  border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-rtl .fr-command.fr-btn.fr-btn-hover, .fr-toolbar.fr-rtl .fr-btn-wrap.fr-btn-hover, .fr-popup.fr-rtl .fr-command.fr-btn.fr-btn-hover, .fr-popup.fr-rtl .fr-btn-wrap.fr-btn-hover, .fr-modal.fr-rtl .fr-command.fr-btn.fr-btn-hover, .fr-modal.fr-rtl .fr-btn-wrap.fr-btn-hover {
  border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline > .fr-command.fr-btn:not(.fr-hidden), .fr-toolbar.fr-inline > .fr-btn-wrap:not(.fr-hidden) {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-command:hover, .fr-desktop .fr-command:focus, .fr-desktop .fr-command.fr-btn-hover, .fr-desktop .fr-command.fr-expanded {
  outline: 0;
  color: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-command:hover:not(.fr-table-cell), .fr-desktop .fr-command:focus:not(.fr-table-cell), .fr-desktop .fr-command.fr-btn-hover:not(.fr-table-cell), .fr-desktop .fr-command.fr-expanded:not(.fr-table-cell) {
  background: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-command:hover::after, .fr-desktop .fr-command:focus::after, .fr-desktop .fr-command.fr-btn-hover::after, .fr-desktop .fr-command.fr-expanded::after {
  border-top-color: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-command.fr-selected:not(.fr-table-cell), .fr-desktop .fr-command:active {
  color: #333333;
  background: #d6d6d6;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-command.fr-active:hover, .fr-desktop .fr-command.fr-active:focus, .fr-desktop .fr-command.fr-active.fr-btn-hover, .fr-desktop .fr-command.fr-active.fr-expanded {
  background: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-command.fr-active:active {
  background: #d6d6d6;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-command.fr-disabled:hover, .fr-desktop .fr-command.fr-disabled:focus, .fr-desktop .fr-command.fr-disabled.fr-selected {
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop.fr-disabled .fr-command:hover, .fr-desktop.fr-disabled .fr-command:focus, .fr-desktop.fr-disabled .fr-command.fr-selected {
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-mobile .fr-command.fr-blink, .fr-popup.fr-mobile .fr-command.fr-blink {
  background: #d6d6d6;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-mobile .fr-command:focus-visible {
  outline: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn.fr-options {
  width: 16px;
  margin-left: -5px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn.fr-options.fr-btn-hover, .fr-command.fr-btn.fr-options:hover, .fr-command.fr-btn.fr-options:focus {
  border-left: solid 1px #FAFAFA;
  -webkit-transition: border-left 0s, background-color 0.5s;
  -moz-transition: border-left 0s, background-color 0.5s;
  -ms-transition: border-left 0s, background-color 0.5s;
  -o-transition: border-left 0s, background-color 0.5s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu {
  background: #FFF;
  display: inline-block;
  position: absolute;
  right: auto;
  bottom: auto;
  height: auto;
  z-index: 4;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  zoom: 1;
  -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu.test-height .fr-dropdown-wrapper {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  height: auto;
  max-height: 275px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper {
  padding: 0;
  margin: auto;
  display: inline-block;
  text-align: left;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  margin-top: 0;
  float: left;
  height: 0;
  margin-top: 0 !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content {
  position: relative;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list {
  list-style-type: none;
  margin: 0;
  padding: 8px 0;
  min-width: 72px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li {
  padding: 0;
  margin: 0;
  font-size: 15px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a {
  padding: 0 20px;
  line-height: 200%;
  display: flex;
  cursor: pointer;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a svg {
  width: 24px;
  height: 24px;
  margin: 3px 4px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a svg path {
  fill: #333333;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active {
  background: #d6d6d6;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active:focus:not(.fr-table-cell), .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active:hover:not(.fr-table-cell) {
  outline: 1px solid #0098f7;
  outline-offset: -1px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-disabled {
  color: #bdbdbd;
  cursor: default;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a .fr-shortcut {
  margin-left: 20px;
  font-weight: bold;
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-command.fr-btn.fr-active + .fr-dropdown-menu {
  display: inline-block;
  -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-bottom > .fr-command.fr-btn + .fr-dropdown-menu {
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-rtl .fr-dropdown-wrapper, .fr-popup.fr-rtl .fr-dropdown-wrapper {
  text-align: right !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
body.fr-prevent-scroll {
  overflow: hidden;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
body.fr-prevent-scroll.fr-mobile {
  position: fixed;
  -webkit-overflow-scrolling: touch;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal {
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  overflow-x: auto;
  overflow-y: scroll;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2147483640;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  line-height: 1.2;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal.fr-middle .fr-modal-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  position: absolute;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-clip: padding-box;
  margin: 20px auto;
  display: inline-block;
  background: #FFF;
  min-width: 300px;
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  border: 0;
  overflow: hidden;
  width: 90%;
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-modal .fr-modal-wrapper {
    margin: 30px auto;
    width: 70%;
  }
}

@media (min-width: 992px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-modal .fr-modal-wrapper {
    margin: 50px auto;
    width: 960px;
  }
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-head {
  background: #FFF;
  overflow: hidden;
  position: absolute;
  width: 100%;
  min-height: 42px;
  z-index: 3;
  border-bottom: solid #efefef 1px;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-head .fr-modal-head-line {
  height: 56px;
  padding: 0 10px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-head .fr-modal-close {
  margin: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-head h4 {
  font-size: 20px;
  padding: 19px 10px;
  margin: 0;
  font-weight: 400;
  line-height: 18px;
  display: inline-block;
  float: left;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper div.fr-modal-body {
  height: 100%;
  min-height: 150px;
  overflow-y: auto;
  padding-bottom: 20px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper div.fr-modal-body:focus {
  outline: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command {
  height: 36px;
  line-height: 1;
  color: #0098f7;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command + button {
  margin-left: 24px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:hover, .fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:focus {
  background: #ebebeb;
  color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:active {
  background: #d6d6d6;
  color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-modal .fr-modal-wrapper div.fr-modal-body button::-moz-focus-inner {
  border: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-desktop .fr-modal-wrapper .fr-modal-head i:hover {
  background: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 2147483639;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
ol.decimal_type {
  counter-reset: item;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
ol.decimal_type > li {
  display: block;
  position: relative;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
ol.decimal_type > li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  position: absolute;
  margin-right: 100%;
  right: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup {
  position: absolute;
  display: none;
  color: #222222;
  background: #FFF;
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  margin-top: 10px;
  z-index: 2147483635;
  text-align: left;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-icon {
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  font-weight: 400;
  box-sizing: content-box;
  padding: 6px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-icon-container {
  padding: 20px;
  max-height: 200px;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@supports not (-ms-high-contrast: none) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-popup .fr-icon-container {
    grid-template-columns: repeat(auto-fill, minmax(36px, 36px));
    display: grid;
  }
}

@media (min-width: 768px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-popup .fr-icon-container {
    min-width: 276px;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-popup .fr-icon-container {
    display: inline-flex;
    -ms-flex-flow: row wrap;
  }
}

@media screen and (-ms-high-contrast: active) and (max-width: 768px), (-ms-high-contrast: none) and (max-width: 768px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-popup .fr-icon-container {
    width: 236px;
  }
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-focus {
  background: whitesmoke;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-above {
  margin-top: -10px;
  border-top: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-active {
  display: block;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-hidden {
  display: none !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-empty {
  display: none !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-hs {
  display: block !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-hs.fr-hidden {
  display: none !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-line {
  position: relative;
  padding: 15px 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-line input[type="text"], .fr-popup .fr-input-line input[type="number"], .fr-popup .fr-input-line textarea {
  width: 100%;
  margin-bottom: 1px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: solid 1px #999999;
  color: #222222;
  font-size: 14px;
  background: #FFF;
  position: relative;
  z-index: 2;
  padding: 4px 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border 0.5s, padding 0.5s;
  -moz-transition: border 0.5s, padding 0.5s;
  -ms-transition: border 0.5s, padding 0.5s;
  -o-transition: border 0.5s, padding 0.5s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-line input[type="text"]:hover, .fr-popup .fr-input-line input[type="number"]:hover, .fr-popup .fr-input-line textarea:hover {
  border: solid 1px #515151;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-line input[type="text"]:focus, .fr-popup .fr-input-line input[type="number"]:focus, .fr-popup .fr-input-line textarea:focus {
  border: solid 2px #0098f7;
  padding: 3px 11px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-line input[type="text"], .fr-popup .fr-input-line input[type="number"] {
  height: 46px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-line input + label, .fr-popup .fr-input-line textarea + label {
  position: absolute;
  top: 29px;
  left: 12px;
  font-size: 14px;
  color: grey;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 3;
  display: block;
  background: #FFF;
  padding: 0;
  cursor: text;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-input-line input.fr-not-empty + label, .fr-popup .fr-input-line textarea.fr-not-empty + label {
  color: gray;
  width: auto;
  left: 4px;
  padding: 0 4px;
  font-size: 11px;
  top: 9px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup input, .fr-popup textarea {
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup textarea {
  resize: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-buttons {
  white-space: nowrap;
  line-height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-buttons .fr-btn {
  margin-left: 4px;
  margin-right: 4px;
  display: inline-block;
  float: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-buttons .fr-btn i {
  float: left;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-buttons .fr-separator {
  display: inline-block;
  float: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-buttons.fr-tabs {
  border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #f5f5f5;
  overflow: hidden;
}

@media (max-width: 768px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-popup .fr-buttons.fr-tabs.fr-tabs-scroll {
    overflow: scroll;
    overflow-y: hidden;
    width: 276px;
  }
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-buttons:not(.fr-tabs) {
  padding: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-layer {
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 195px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 20px;
  display: none;
}

@media (min-width: 768px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-popup .fr-layer {
    width: 260px;
  }
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-layer.fr-active {
  display: inline-block;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-action-buttons {
  z-index: 7;
  height: 36px;
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-action-buttons button.fr-command {
  height: 36px;
  line-height: 1;
  color: #0098f7;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-action-buttons button.fr-command + button {
  margin-left: 24px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-action-buttons button.fr-command:hover, .fr-popup .fr-action-buttons button.fr-command:focus {
  background: #ebebeb;
  color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-action-buttons button.fr-command:active {
  background: #d6d6d6;
  color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-action-buttons button::-moz-focus-inner {
  border: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 10px;
  border-radius: 100%;
  line-height: 1;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  vertical-align: middle;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox svg {
  margin-left: 2px;
  margin-top: 2px;
  display: none;
  width: 10px;
  height: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox span {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input {
  position: absolute;
  z-index: 2;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border: 0 none;
  cursor: pointer;
  height: 18px;
  margin: 0;
  padding: 0;
  width: 18px;
  top: 7px;
  left: 7px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input:not(:checked) + span {
  border: solid 2px #999999;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input:not(:checked):active + span {
  background-color: #f5f5f5;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input:not(:checked):focus + span, .fr-popup .fr-checkbox input:not(:checked):hover + span {
  border-color: #515151;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input:checked + span {
  background: #0098f7;
  border: solid 2px #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input:checked + span svg {
  display: block;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input:checked:active + span {
  background-color: #EcF5Ff;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox input:checked:focus + span, .fr-popup .fr-checkbox input:checked:hover + span {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox-line {
  font-size: 14px;
  line-height: 1.4px;
  margin-top: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup .fr-checkbox-line label {
  cursor: pointer;
  margin: 0 5px;
  vertical-align: middle;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-rtl {
  direction: rtl;
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-rtl .fr-action-buttons {
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-rtl .fr-input-line input + label, .fr-popup.fr-rtl .fr-input-line textarea + label {
  left: auto;
  right: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-popup.fr-rtl .fr-buttons .fr-separator.fr-vs {
  float: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-text-edit-layer {
  width: 250px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar {
  color: #222222;
  background: #FFF;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: left;
  border: 1px solid #CCCCCC;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
  padding-bottom: 0;
  -webkit-transition: padding-bottom 0.5s;
  -moz-transition: padding-bottom 0.5s;
  -ms-transition: padding-bottom 0.5s;
  -o-transition: padding-bottom 0.5s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar::after {
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-newline {
  clear: both;
  display: block;
  content: "";
  margin-left: 9px;
  margin-right: 9px;
  background: #efefef;
  height: 1px;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  -o-transition: height 0.5s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-toolbar-open .fr-newline {
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-float-right {
  float: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-float-left {
  float: left;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-more-toolbar {
  float: left;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #f5f5f5;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  -o-transition: height 0.5s;
  height: 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-more-toolbar.fr-expanded {
  height: 48px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-more-toolbar.fr-overflow-visible {
  overflow: visible;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-more-toolbar > .fr-command.fr-btn {
  margin-left: 4px;
  margin-right: 4px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-btn-grp {
  display: inline-block;
  margin: 0 17px 0 12px;
}

@media (max-width: 768px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-toolbar .fr-btn-grp {
    margin: 0 7px 0 6px;
  }
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-open {
  margin-top: 10px;
  margin-bottom: -1px;
  border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-command.fr-btn.fr-open:not(:hover):not(:focus):not(:active) {
  background: #f5f5f5;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar .fr-popup .fr-command:focus-visible {
  outline: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-rtl {
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline {
  display: none;
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  border: 0;
  white-space: nowrap;
  position: absolute;
  margin-top: 5px;
  z-index: 2147483630;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline.fr-above {
  margin-top: -10px;
  border-top: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline .fr-newline {
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline .fr-more-toolbar {
  position: absolute !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline .fr-more-toolbar.fr-expanded {
  position: relative !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-top {
  top: 0;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-bottom {
  bottom: 0;
  border-top: 0;
  padding-bottom: 0;
  border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-bottom .fr-newline {
  padding-top: 0;
  -webkit-transition: padding-top 0.5s;
  -moz-transition: padding-top 0.5s;
  -ms-transition: padding-top 0.5s;
  -o-transition: padding-top 0.5s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-bottom.fr-toolbar-open .fr-newline {
  padding-top: 48px;
  background: #FFF;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-bottom .fr-command.fr-btn.fr-open {
  margin-top: -1px;
  margin-bottom: 10px;
  border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-sticky-on {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-separator {
  background: #ebebeb;
  display: block;
  vertical-align: top;
  float: left;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-separator + .fr-separator {
  display: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-separator.fr-vs {
  height: 32px;
  width: 1px;
  margin: 8px 4px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-separator.fr-hs {
  clear: both;
  width: calc(100% - (2 * 4px));
  margin: 0 4px;
  height: 1px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-separator.fr-hidden {
  display: none !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-rtl .fr-separator {
  float: right;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline .fr-separator.fr-hs {
  float: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-toolbar.fr-inline .fr-separator.fr-vs {
  display: inline-block;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-second-toolbar {
  border: 1px solid #CCCCCC;
  border-top: 0;
  background: #FFF;
  line-height: 1.4;
  border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-second-toolbar::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-second-toolbar:empty {
  min-height: calc(10px);
  position: relative;
  margin-top: calc(-1px);
  z-index: 2;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
#fr-logo {
  float: left;
  outline: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
#fr-logo > span {
  display: inline-block;
  float: left;
  font-family: sans-serif;
  padding: 11px 5px 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #b1b2b7;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
#fr-logo > svg {
  height: 20px;
  width: 47px;
  margin: 7px 0;
  cursor: pointer;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
#fr-logo > svg * {
  -webkit-transition: fill 0.3s;
  -moz-transition: fill 0.3s;
  -ms-transition: fill 0.3s;
  -o-transition: fill 0.3s;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
#fr-logo:hover > span, #fr-logo:focus > span {
  color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
#fr-logo:hover > svg .fr-logo, #fr-logo:focus > svg .fr-logo {
  fill: #0098f7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-visibility-helper {
  display: none;
  margin-left: 0 !important;
}

@media (min-width: 768px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-visibility-helper {
    margin-left: 1px !important;
  }
}

@media (min-width: 992px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-visibility-helper {
    margin-left: 2px !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, node_modules/froala-editor/css/froala_editor.min.css */
  .fr-visibility-helper {
    margin-left: 3px !important;
  }
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-opacity-0 {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-box {
  position: relative;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-sticky-off {
  position: relative;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-sticky-on {
  position: fixed;
  z-index: 10;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-sticky-on.fr-sticky-ios {
  position: -webkit-sticky;
  left: 0;
  right: 0;
  width: auto !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.modal .fr-sticky-on {
  position: sticky;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-sticky-dummy {
  display: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-sticky-on + .fr-sticky-dummy, .fr-sticky-box > .fr-sticky-dummy {
  display: block;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
span.fr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view .fr-highlight-change, .fr-highlight-change > img, .fr-highlight-change > .fr-video > video, .fr-highlight-change > .fr-video > embed, .fr-highlight-change > .fr-video > iframe, .fr-highlight-change > .fr-embedly > .embedly-card > .embedly-card-hug > iframe, .fr-highlight-change > p, .fr-view .fr-highlight-change > span:not(.fr-tracking-deleted), .fr-highlight-change li, .fr-highlight-change > table td, .fr-highlight-change > table th {
  background-color: #f3eec3;
  opacity: 0.5;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view .fr-highlight-table, .fr-view .fr-highlight-table > span {
  opacity: 1;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-highlight-change.fr-highlight-change > table td, .fr-highlight-change.fr-highlight-change > hr {
  border-color: #f3eec3;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-tracking-deleted.fr-tracking-deleted > table td, .fr-tracking-deleted.fr-tracking-deleted > hr {
  border-color: #dc3545;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-tracking-deleted img, .fr-tracking-deleted > .fr-video > video, .fr-tracking-deleted > .fr-video > iframe, .fr-tracking-deleted > .fr-embedly > .embedly-card > .embedly-card-hug > iframe {
  opacity: 0.5;
  background-color: #dc3545;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view .fr-tracking-deleted {
  background-color: #dc3545;
  text-decoration: line-through;
  pointer-events: none;
  user-select: none;
  opacity: 1;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-highlight-change > .fr-video > iframe, .fr-tracking-deleted > .fr-video > iframe, .fr-highlight-change > .fr-video > video, .fr-tracking-deleted > .fr-video > video, .fr-highlight-change > .fr-video > embed, .fr-highlight-change > .fr-embedly > .embedly-card > .embedly-card-hug > iframe, .fr-tracking-deleted > .fr-embedly > .embedly-card > .embedly-card-hug > iframe {
  padding: 10px !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-tracking-deleted img, .fr-highlight-change img {
  border: 2px solid #f3eec3;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-highlight-change [data-pasted="true"] *:not(table):not(tbody):not(tr):not(td) {
  opacity: 0.5;
  background-color: #f3eec3;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-highlight-change [data-pasted="true"] > table td {
  opacity: 0.5;
  border-color: #f3eec3;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-track-visibility-hidden {
  visibility: hidden;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-track-hide {
  display: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-track-hide-mobile {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-ios-mobile-disable-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-bottom-extended {
  flex-wrap: wrap;
  display: flex;
  box-sizing: border-box;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.position-relative {
  position: relative !important;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle {
  display: block;
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  padding: 3px;
  border: transparent 2px solid;
  border-radius: 4px 4px 0 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle a {
  width: 16px;
  height: 16px;
  display: block;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle a > svg {
  width: 16px;
  height: 16px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle-active {
  border: #F6D146 2px solid;
  background-color: #F6D146;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle-active a > svg {
  color: #F6D146;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle-active-selected {
  border: #0098F7 2px solid;
  background-color: #0098F7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle-active-selected a > svg {
  color: #0098F7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-handle-inactive {
  display: none;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view .fr-selection-handle-hover {
  outline: #F6D146 2px solid;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view .fr-selection-handle-selected {
  outline: #0098F7 2px solid;
  caret-color: transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view .fr-selection-handle-selected *::selection {
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-view .fr-selection-handle-selected *::-moz-selection {
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-custom-selection-highlight {
  background-color: rgba(181, 214, 253, 0.8);
  color: #000;
  padding: 3px 0px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-drop-indicator {
  position: absolute;
  height: 0;
  z-index: 1000;
  pointer-events: none;
  margin-top: -1px;
  width: 100%;
  left: 0;
  display: block;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-drop-indicator .fr-selection-drop-indicator-line {
  border: 1px solid #0098F7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-drop-indicator .fr-selection-drop-indicator-line::before, .fr-selection-drop-indicator .fr-selection-drop-indicator-line::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 8px;
  height: 2px;
  border-style: solid;
  border-width: 4px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-drop-indicator .fr-selection-drop-indicator-line::before {
  left: 0;
  border-color: transparent transparent transparent #0098F7;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-selection-drop-indicator .fr-selection-drop-indicator-line::after {
  right: 0;
  border-color: transparent #0098F7 transparent transparent;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-link-input-layer {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-link-input-layer .fr-input-line {
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-link-input-layer .fr-buttons:not(.fr-tabs) {
  padding: 0;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-link-input-layer .fr-buttons .fr-command.fr-btn.fr-dropdown {
  width: 30px;
  z-index: 4;
  right: 0;
  height: 46px;
  margin: 0 0 0 2px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-link-input-layer .fr-buttons .fr-command.fr-btn.fr-dropdown.fr-active {
  background-color: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-link-input-layer .fr-buttons .fr-command.fr-btn.fr-dropdown:after {
  scale: 1.5;
  left: 11px;
  top: 20px;
}

/* line 7, node_modules/froala-editor/css/froala_editor.min.css */
.fr-link-input-layer .fr-dropdown-wrapper {
  width: 100%;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-rounded, .fr-view .fr-img-caption.fr-rounded img {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-shadow, .fr-view .fr-img-caption.fr-shadow img {
  -webkit-box-shadow: 10px 10px 5px 0px #cccccc;
  -moz-box-shadow: 10px 10px 5px 0px #cccccc;
  box-shadow: 10px 10px 5px 0px #cccccc;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-bordered, .fr-view .fr-img-caption.fr-bordered img {
  border: solid 5px #CCC;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-bordered {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-img-caption.fr-bordered img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view li img.fr-dii.fr-fil {
  margin-right: 20px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view {
  word-wrap: break-word;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span[style~="color:"] a {
  color: inherit;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view strong {
  font-weight: 700;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table[border='0'] td:not([class]), .fr-view table[border='0'] th:not([class]), .fr-view table[border='0'] td[class=""], .fr-view table[border='0'] th[class=""] {
  border-width: 0px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table {
  border: none;
  border-collapse: collapse;
  empty-cells: show;
  max-width: 100%;
  margin: 0px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table td {
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table.fr-dashed-borders td, .fr-view table.fr-dashed-borders th {
  border-style: dashed;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: whitesmoke;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table td, .fr-view table th {
  border: 1px solid #DDD;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table td:empty, .fr-view table th:empty {
  height: 20px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table td.fr-highlighted, .fr-view table th.fr-highlighted {
  border: 1px double red;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table td.fr-thick, .fr-view table th.fr-thick {
  border-width: 2px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table th {
  background: #ececec;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view table tfoot td {
  background: #ececec;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-mso-hidden {
  display: none;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view hr {
  clear: both;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  break-after: always;
  page-break-after: always;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-file {
  position: relative;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-file::after {
  position: relative;
  content: "\1F4CE";
  font-weight: normal;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: visible;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view[dir="rtl"] blockquote {
  border-left: none;
  border-right: solid 2px #5E35B1;
  margin-right: 0;
  padding-right: 5px;
  padding-left: 0;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view[dir="rtl"] blockquote blockquote {
  border-color: #00BCD4;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view[dir="rtl"] blockquote blockquote blockquote {
  border-color: #43A047;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view blockquote {
  border-left: solid 2px #5E35B1;
  margin-left: 0;
  padding-left: 5px;
  color: #5E35B1;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view blockquote blockquote {
  border-color: #00BCD4;
  color: #00BCD4;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view blockquote blockquote blockquote {
  border-color: #43A047;
  color: #43A047;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-emoticon {
  font-weight: normal;
  font-family: "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
  display: inline;
  line-height: 0;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-emoticon.fr-emoticon-img {
  background-repeat: no-repeat !important;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -.1em .1em .1em;
  line-height: 1;
  vertical-align: middle;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-text-gray {
  color: #AAA !important;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-text-bordered {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  padding: 10px 0;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-text-spaced {
  letter-spacing: 1px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-text-uppercase {
  text-transform: uppercase;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-class-highlighted {
  background-color: #ffff00;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-class-code {
  border-color: #cccccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f5f5f5;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-class-transparency {
  opacity: 0.5;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img {
  position: relative;
  max-width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
  min-width: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption {
  position: relative;
  max-width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
  min-width: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video {
  text-align: center;
  position: relative;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-rv {
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-rv > iframe, .fr-view .fr-video.fr-rv object, .fr-view .fr-video.fr-rv embed {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-dvb {
  display: block;
  clear: both;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-dvb.fr-fvl {
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-dvb.fr-fvr {
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-dvi {
  display: inline-block;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-dvi.fr-fvl {
  float: left;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-video.fr-dvi.fr-fvr {
  float: right;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view a.fr-strong {
  font-weight: 700;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view a.fr-green {
  color: green;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-img-caption {
  text-align: center;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-img-caption .fr-img-wrap {
  padding: 0;
  margin: auto;
  text-align: center;
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-img-caption .fr-img-wrap a {
  display: block;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-img-caption .fr-img-wrap img {
  display: block;
  margin: auto;
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view .fr-img-caption .fr-img-wrap > span {
  margin: auto;
  display: block;
  padding: 5px 5px 10px;
  font-size: 14px;
  font-weight: initial;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  width: 100%;
  text-align: center;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view button.fr-rounded, .fr-view input.fr-rounded, .fr-view textarea.fr-rounded {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view button.fr-large, .fr-view input.fr-large, .fr-view textarea.fr-large {
  font-size: 24px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
.fr-view span.fr-img-caption.fr-dii.fr-fil, .fr-view p img.fr-dii.fr-fil {
  margin-right: 15px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
a.fr-view.fr-strong {
  font-weight: 700;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
a.fr-view.fr-green {
  color: green;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
img.fr-view {
  position: relative;
  max-width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
img.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
img.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
img.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
img.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
  min-width: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
img.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
img.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
span.fr-img-caption.fr-view {
  position: relative;
  max-width: 100%;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
span.fr-img-caption.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
span.fr-img-caption.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
span.fr-img-caption.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
span.fr-img-caption.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
  min-width: 10px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
span.fr-img-caption.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/* line 7, node_modules/froala-editor/css/froala_style.min.css */
span.fr-img-caption.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
  min-width: 5px;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-element img {
  cursor: pointer;
  padding: 0 1px;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer {
  position: absolute;
  border: solid 1px #0098f7;
  display: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer.fr-active {
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler {
  display: block;
  position: absolute;
  background: #0098f7;
  border: solid 1px #FFF;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  z-index: 4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hnw {
  cursor: nw-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hne {
  cursor: ne-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hsw {
  cursor: sw-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hse {
  cursor: se-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler {
  width: 12px;
  height: 12px;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hnw {
  left: -6px;
  top: -6px;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hne {
  right: -6px;
  top: -6px;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hsw {
  left: -6px;
  bottom: -6px;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-resizer .fr-handler.fr-hse {
  right: -6px;
  bottom: -6px;
}

@media (min-width: 1200px) {
  /* line 7, node_modules/froala-editor/css/plugins/image.min.css */
  .fr-image-resizer .fr-handler {
    width: 10px;
    height: 10px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/image.min.css */
  .fr-image-resizer .fr-handler.fr-hnw {
    left: -5px;
    top: -5px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/image.min.css */
  .fr-image-resizer .fr-handler.fr-hne {
    right: -5px;
    top: -5px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/image.min.css */
  .fr-image-resizer .fr-handler.fr-hsw {
    left: -5px;
    bottom: -5px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/image.min.css */
  .fr-image-resizer .fr-handler.fr-hse {
    right: -5px;
    bottom: -5px;
  }
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483640;
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  margin: 20px;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  text-align: center;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-upload-layer:hover, .fr-popup .fr-image-upload-layer:has(.fr-not-empty) {
  background: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 400px;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-progress-bar-layer > div.fr-action-buttons {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-progress-bar-layer > div.fr-loader {
  background: #b3e0fd;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #0098f7;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-popup .fr-image-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-size-layer .fr-image-group .fr-input-line {
  width: calc(50% - 5px);
  display: inline-block;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-image-size-layer .fr-image-group .fr-input-line + .fr-input-line {
  margin-left: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
.fr-uploading {
  -webkit-opacity: .4;
  -moz-opacity: .4;
  opacity: .4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

@-webkit-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

@-moz-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

@-o-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

@keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

/* line 7, node_modules/froala-editor/css/plugins/image.min.css */
img.fr-draggable {
  user-select: none;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  margin: 20px;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-upload-layer:hover {
  background: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 500%;
  height: 100%;
  margin: 0;
  font-size: 400px;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer > div.fr-action-buttons {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer > div.fr-loader {
  background: #b3e0fd;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #0098f7;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/file.min.css */
.fr-popup .fr-file-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}

@keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

@-webkit-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

@-moz-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

@-o-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

@keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-element table td.fr-selected-cell, .fr-element table th.fr-selected-cell {
  border: 1px double #0098f7;
  position: relative;
  background-color: rgba(0, 100, 255, 0.15);
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-element table td, .fr-element table th {
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-element .fr-no-selection table td, .fr-element .fr-no-selection table th {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-resizer {
  position: absolute;
  z-index: 3;
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-resizer.fr-table-col-resizer {
  cursor: col-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-resizer.fr-table-col-resizer div {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-right: 1px solid #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-resizer.fr-table-row-resizer {
  cursor: row-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-resizer.fr-table-row-resizer div {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-bottom: 1px solid #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-resizer.fr-moving {
  z-index: 2;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-no-selection {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size {
  margin: 20px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size .fr-table-size-info {
  text-align: center;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size .fr-select-table-size {
  line-height: 0;
  padding: 5px;
  white-space: nowrap;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size .fr-select-table-size > span {
  display: inline-block;
  padding: 0 4px 4px 0;
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size .fr-select-table-size > span > span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #DDD;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size .fr-select-table-size > span.hover {
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size .fr-select-table-size > span.hover > span {
  background: rgba(0, 152, 247, 0.3);
  border: solid 1px #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-size .fr-select-table-size .new-line::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup.fr-above .fr-table-size .fr-select-table-size > span {
  display: inline-block !important;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup .fr-table-colors {
  display: block;
  padding: 20px;
  padding-bottom: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-popup.fr-desktop .fr-table-size .fr-select-table-size > span > span {
  width: 12px;
  height: 12px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-insert-helper {
  position: absolute;
  z-index: 9999;
  white-space: nowrap;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form, .fr-table-properties-form {
  padding: 15px;
  width: 360px;
  max-width: 100%;
  background-color: #FFF;
  border-radius: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-section, .fr-cell-properties-form .fr-table-properties-section, .fr-table-properties-form .fr-cell-properties-section, .fr-table-properties-form .fr-table-properties-section {
  margin-bottom: 12px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-section label, .fr-cell-properties-form .fr-table-properties-section label, .fr-table-properties-form .fr-cell-properties-section label, .fr-table-properties-form .fr-table-properties-section label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container, .fr-cell-properties-form .fr-table-bg-container, .fr-table-properties-form .fr-cell-bg-container, .fr-table-properties-form .fr-table-bg-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-input, .fr-cell-properties-form .fr-table-bg-container .fr-input, .fr-table-properties-form .fr-cell-bg-container .fr-input, .fr-table-properties-form .fr-table-bg-container .fr-input {
  flex: 1;
  height: 36px;
  padding: 4px 12px;
  border: 1px solid #ccc;
  border-radius: 2px 0 0 2px;
  box-sizing: border-box;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-input:focus, .fr-cell-properties-form .fr-table-bg-container .fr-input:focus, .fr-table-properties-form .fr-cell-bg-container .fr-input:focus, .fr-table-properties-form .fr-table-bg-container .fr-input:focus {
  outline: none;
  border-color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-input.fr-disabled, .fr-cell-properties-form .fr-table-bg-container .fr-input.fr-disabled, .fr-table-properties-form .fr-cell-bg-container .fr-input.fr-disabled, .fr-table-properties-form .fr-table-bg-container .fr-input.fr-disabled {
  background-color: #f5f5f5;
  color: #a9a9a9;
  border: 1px solid #d1d1d1;
  cursor: not-allowed;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-input::placeholder, .fr-cell-properties-form .fr-table-bg-container .fr-input::placeholder, .fr-table-properties-form .fr-cell-bg-container .fr-input::placeholder, .fr-table-properties-form .fr-table-bg-container .fr-input::placeholder {
  color: #AAA;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color {
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 2px 2px 0;
  position: relative;
  padding: 0;
  background: transparent;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: -1px 0 0 -1px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color:hover, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color:hover, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color:hover, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color:hover, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color:hover, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color:hover, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color:hover, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color:hover, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color:hover, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color:hover, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color:hover, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color:hover {
  background-color: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview {
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator, .fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator {
  position: absolute;
  background: red;
  width: 28px;
  height: 1px;
  top: 9px;
  left: -4px;
  transform: rotate(-45deg);
  transform-origin: center;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container, .fr-table-properties-form .fr-cell-dimensions-container {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container label, .fr-table-properties-form .fr-cell-dimensions-container label {
  font-weight: bold;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section {
  flex: 1;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input {
  width: 90px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input:focus, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input:focus {
  outline: none;
  border-color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input.fr-disabled, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input.fr-disabled {
  background-color: #f5f5f5;
  color: #a9a9a9;
  border: 1px solid #d1d1d1;
  cursor: not-allowed;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input::placeholder, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input::placeholder {
  color: #AAA;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs .fr-dimension-separator, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs .fr-dimension-separator {
  line-height: 1;
  font-size: 16px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section {
  flex: 1;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section label, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section label {
  font-weight: bold;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input {
  width: 90px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input:focus, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input:focus {
  outline: none;
  border-color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input.fr-disabled, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input.fr-disabled {
  background-color: #f5f5f5;
  color: #a9a9a9;
  border: 1px solid #d1d1d1;
  cursor: not-allowed;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input::placeholder, .fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input::placeholder {
  color: #AAA;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-buttons, .fr-cell-properties-form .fr-table-properties-buttons, .fr-table-properties-form .fr-cell-properties-buttons, .fr-table-properties-form .fr-table-properties-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button, .fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button, .fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button, .fr-cell-properties-form .fr-table-properties-buttons .fr-save-button, .fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button, .fr-table-properties-form .fr-cell-properties-buttons .fr-save-button, .fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button, .fr-table-properties-form .fr-table-properties-buttons .fr-save-button {
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  font-weight: 500;
  height: 36px;
  line-height: 20px;
  box-sizing: border-box;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button.fr-disabled, .fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button.fr-disabled, .fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button.fr-disabled, .fr-cell-properties-form .fr-table-properties-buttons .fr-save-button.fr-disabled, .fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button.fr-disabled, .fr-table-properties-form .fr-cell-properties-buttons .fr-save-button.fr-disabled, .fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button.fr-disabled, .fr-table-properties-form .fr-table-properties-buttons .fr-save-button.fr-disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: #a9a9a9;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button, .fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button, .fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button, .fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button {
  background: none;
  border: none;
  color: #0098f7;
  border-radius: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button:hover, .fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button:hover, .fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button:hover, .fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button:hover {
  text-decoration: underline;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button, .fr-cell-properties-form .fr-table-properties-buttons .fr-save-button, .fr-table-properties-form .fr-cell-properties-buttons .fr-save-button, .fr-table-properties-form .fr-table-properties-buttons .fr-save-button {
  background-color: #FFF;
  border: 1px solid #0098f7;
  color: #0098f7;
  border-radius: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button:hover, .fr-cell-properties-form .fr-table-properties-buttons .fr-save-button:hover, .fr-table-properties-form .fr-cell-properties-buttons .fr-save-button:hover, .fr-table-properties-form .fr-table-properties-buttons .fr-save-button:hover {
  background-color: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form .fr-error, .fr-table-properties-form .fr-error {
  color: red;
  font-size: 12px;
  padding-bottom: 5px;
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-cell-properties-form input.fr-error, .fr-table-properties-form input.fr-error {
  border-color: red;
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-properties-section label:not(:first-child) {
  margin-top: 15px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-properties-section .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a {
  line-height: 170%;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line, .fr-table-border-container .fr-input-line, .fr-table-dimensions-container .fr-input-line, .fr-table-style-container .fr-input-line {
  padding: 0px;
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line input[type="text"], .fr-table-border-container .fr-input-line input[type="text"], .fr-table-dimensions-container .fr-input-line input[type="text"], .fr-table-style-container .fr-input-line input[type="text"] {
  height: 36px;
  border-color: #ccc;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line input + label, .fr-table-border-container .fr-input-line input + label, .fr-table-dimensions-container .fr-input-line input + label, .fr-table-style-container .fr-input-line input + label {
  top: -5px;
  font-weight: 100;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line input.fr-not-empty + label, .fr-table-border-container .fr-input-line input.fr-not-empty + label, .fr-table-dimensions-container .fr-input-line input.fr-not-empty + label, .fr-table-style-container .fr-input-line input.fr-not-empty + label {
  top: -20px;
  font-weight: 100;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line #fr-table-border-style, .fr-table-border-container .fr-input-line #fr-table-border-style, .fr-table-dimensions-container .fr-input-line #fr-table-border-style, .fr-table-style-container .fr-input-line #fr-table-border-style {
  width: 90%;
  height: 36px;
  border-color: #ccc;
  border-radius: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line .fr-field-lable, .fr-table-border-container .fr-input-line .fr-field-lable, .fr-table-dimensions-container .fr-input-line .fr-field-lable, .fr-table-style-container .fr-input-line .fr-field-lable {
  position: absolute;
  font-size: 11px;
  padding: 0px 3px;
  margin: -6px 5px;
  background: #FFF;
  font-weight: 100;
  color: dimgray;
  z-index: 3;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line .fr-buttons, .fr-table-border-container .fr-input-line .fr-buttons, .fr-table-dimensions-container .fr-input-line .fr-buttons, .fr-table-style-container .fr-input-line .fr-buttons {
  padding: 0px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after, .fr-table-border-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after, .fr-table-dimensions-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after, .fr-table-style-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after {
  right: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active, .fr-table-border-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active, .fr-table-dimensions-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active, .fr-table-style-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active {
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-bg-container .fr-input-line .fr-dropdown, .fr-table-border-container .fr-input-line .fr-dropdown, .fr-table-dimensions-container .fr-input-line .fr-dropdown, .fr-table-style-container .fr-input-line .fr-dropdown {
  margin: 0px;
  background: transparent;
  border: 1px solid #ccc;
  margin-right: 10px;
  height: 36px;
  border-radius: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-border-container .fr-dropdown-wrapper {
  width: 120px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-alignment-section {
  margin-left: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-border-container, .fr-table-dimensions-container, .fr-table-dimensions-section {
  display: flex;
  margin-top: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-border-container .fr-dimension-separator, .fr-table-dimensions-container .fr-dimension-separator, .fr-table-dimensions-section .fr-dimension-separator {
  margin: 10px 5px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-border-container .fr-btn-table-border-bg-color, .fr-table-dimensions-container .fr-btn-table-border-bg-color, .fr-table-dimensions-section .fr-btn-table-border-bg-color {
  margin-right: 10px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 2px;
  border-left: 0px;
  height: 36px;
  margin-left: -1px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-border-container .fr-btn-table-border-bg-color .fr-border-color-preview, .fr-table-dimensions-container .fr-btn-table-border-bg-color .fr-border-color-preview, .fr-table-dimensions-section .fr-btn-table-border-bg-color .fr-border-color-preview {
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-border-container .fr-btn-table-border-bg-color .fr-border-color-preview .fr-border-color-preview-indicator, .fr-table-dimensions-container .fr-btn-table-border-bg-color .fr-border-color-preview .fr-border-color-preview-indicator, .fr-table-dimensions-section .fr-btn-table-border-bg-color .fr-border-color-preview .fr-border-color-preview-indicator {
  position: absolute;
  background: red;
  width: 28px;
  height: 1px;
  top: 9px;
  left: -4px;
  transform: rotate(-45deg);
  transform-origin: center;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-style > button {
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-style .fr-dropdown-wrapper {
  width: 200px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-alignment-container {
  height: 33px;
  border: 1px solid #ccc;
  margin-top: 10px;
  border-radius: 2px;
  min-width: 130px;
}

/* line 7, node_modules/froala-editor/css/plugins/table.min.css */
.fr-table-alignment-container button {
  height: 30px;
  width: 36px;
  padding: 2px 2px 2px 5px;
  border: none;
  background: transparent;
  margin: 2px;
  cursor: pointer;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-layer.fr-color-hex-layer {
  margin: 0;
  padding: 20px;
  padding-top: 0;
  float: left;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-layer.fr-color-hex-layer .fr-input-line {
  float: left;
  width: calc(100% - 50px);
  padding: 15px 0 0;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-layer.fr-color-hex-layer .fr-action-buttons {
  float: right;
  width: 38px;
  height: 40px;
  padding: 17px 0 0;
  margin: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-layer.fr-color-hex-layer .fr-action-buttons button.fr-command {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 13px;
  height: 40px;
  width: 38px;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-separator + .fr-colors-tabs {
  margin-left: 2px;
  margin-right: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-color-set {
  line-height: 0;
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-color-set.fr-selected-set {
  display: block;
  padding: 20px;
  padding-bottom: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-color-set > span {
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-color-set > span > i, .fr-popup .fr-color-set > span > svg {
  text-align: center;
  line-height: 32px;
  height: 24px;
  width: 24px;
  margin: 4px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  cursor: default;
  left: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-color-set > span > i path, .fr-popup .fr-color-set > span > svg path {
  fill: #222;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-color-set > span .fr-selected-color {
  color: #FFF;
  font-family: FontAwesome;
  font-size: 13px;
  font-weight: 400;
  line-height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  cursor: default;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-popup .fr-color-set > span:hover, .fr-popup .fr-color-set > span:focus, .fr-popup .fr-color-set > span:not(.fr-table-cell):hover, .fr-popup .fr-color-set > span:not(.fr-table-cell):focus {
  outline: 1px solid #222;
  z-index: 2;
}

/* line 7, node_modules/froala-editor/css/plugins/colors.min.css */
.fr-rtl .fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
body.fr-fullscreen {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen {
  margin: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483630 !important;
  width: auto !important;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen .fr-wrapper {
  background-color: #FFF;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen.fr-basic.fr-top .fr-wrapper {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen.fr-basic.fr-bottom .fr-wrapper {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen .fr-toolbar {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen .fr-toolbar.fr-top {
  top: 0 !important;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen .fr-toolbar.fr-bottom {
  bottom: 0 !important;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-box.fr-fullscreen .fr-second-toolbar {
  margin-top: 0;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* line 7, node_modules/froala-editor/css/plugins/fullscreen.min.css */
.fr-fullscreen-wrapper {
  z-index: 2147483640 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-element .fr-video {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-element .fr-video::after {
  position: absolute;
  content: '';
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  display: block;
  background: transparent;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-element .fr-video.fr-active > * {
  z-index: 2;
  position: relative;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-element .fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer {
  position: absolute;
  border: solid 1px #0098f7;
  display: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer.fr-active {
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler {
  display: block;
  position: absolute;
  background: #0098f7;
  border: solid 1px #FFF;
  z-index: 4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hnw {
  cursor: nw-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hne {
  cursor: ne-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hsw {
  cursor: sw-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hse {
  cursor: se-resize;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler {
  width: 12px;
  height: 12px;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hnw {
  left: -6px;
  top: -6px;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hne {
  right: -6px;
  top: -6px;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hsw {
  left: -6px;
  bottom: -6px;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-box .fr-video-resizer .fr-handler.fr-hse {
  right: -6px;
  bottom: -6px;
}

@media (min-width: 1200px) {
  /* line 7, node_modules/froala-editor/css/plugins/video.min.css */
  .fr-box .fr-video-resizer .fr-handler {
    width: 10px;
    height: 10px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/video.min.css */
  .fr-box .fr-video-resizer .fr-handler.fr-hnw {
    left: -5px;
    top: -5px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/video.min.css */
  .fr-box .fr-video-resizer .fr-handler.fr-hne {
    right: -5px;
    top: -5px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/video.min.css */
  .fr-box .fr-video-resizer .fr-handler.fr-hsw {
    left: -5px;
    bottom: -5px;
  }
  /* line 7, node_modules/froala-editor/css/plugins/video.min.css */
  .fr-box .fr-video-resizer .fr-handler.fr-hse {
    right: -5px;
    bottom: -5px;
  }
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line {
  width: calc(50% - 5px);
  display: inline-block;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line + .fr-input-line {
  margin-left: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  margin: 20px;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  text-align: center;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-upload-layer:hover {
  background: #ebebeb;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 500%;
  height: 100%;
  margin: 0;
  font-size: 400px;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-progress-bar-layer > div.fr-action-buttons {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-progress-bar-layer > div.fr-loader {
  background: #b3e0fd;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #0098f7;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-popup .fr-video-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483640;
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/video.min.css */
.fr-autoplay-margin {
  margin-top: 0px !important;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/special_characters.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/special_characters.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/special_characters.min.css */
.fr-popup .fr-buttons.fr-tabs .fr-special-character-category {
  padding: 10px 15px;
}

/* line 7, node_modules/froala-editor/css/plugins/special_characters.min.css */
.fr-popup .fr-buttons.fr-tabs .fr-special-character-category span {
  font-weight: normal;
  font-size: 16px;
}

/* line 7, node_modules/froala-editor/css/plugins/special_characters.min.css */
.fr-popup .fr-special-character {
  width: 24px;
  height: 24px;
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), (-ms-high-contrast: none) and (min-width: 768px) {
  /* line 7, node_modules/froala-editor/css/plugins/special_characters.min.css */
  .fr-popup .fr-icon-container.fr-sc-container {
    width: 368px;
  }
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-header {
  padding: 15px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body {
  padding: 0 15px 15px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-drag-handle {
  cursor: move;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer h3 {
  margin: 0;
  font-size: 16px;
  text-align: left;
  font-weight: bold;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-input-line input.fr-disabled {
  background-color: #f5f5f5;
  color: #a9a9a9;
  border: 1px solid #d1d1d1;
  cursor: not-allowed;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-input-line input.fr-findText::placeholder, .fr-find-replace-layer .fr-body .fr-input-line input.fr-replaceText::placeholder {
  color: #a9a9a9;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-input-line.fr-find-field {
  width: 227px;
  padding-bottom: 5px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-input-line.fr-replace-field {
  top: -8px;
  padding-bottom: 0px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-label-disabled {
  background-color: #f5f5f5;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-close-btn {
  position: absolute;
  top: 2px;
  right: 10px;
  font-size: 25px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-close-btn:hover {
  color: #ccc;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-toggle-advanced-options {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  background-color: #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
  background: none;
  color: #333;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body input {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-left: 0px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-arrow-buttons {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-left: 10px;
  margin-top: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-arrow-buttons button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 2px 4px;
  margin-bottom: 12px;
  font-size: 12px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-arrow-buttons .fr-disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: #a9a9a9;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-button-group {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-button-group button.fr-find-btn {
  background-color: #FFF;
  color: #0098f7;
  margin-top: 10px;
  border: 1px solid #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-btn {
  background-color: #FFF;
  color: #0098f7;
  font-size: 14px;
  margin-top: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-btn.fr-disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: #a9a9a9;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-all-btn {
  background-color: #FFF;
  color: #0098f7;
  font-size: 14px;
  margin-top: 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-all-btn.fr-disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: #a9a9a9;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body button {
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-replaceText {
  width: 77%;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-findText {
  position: relative;
  padding-right: 40px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-findText:focus {
  border: 2px solid #0098f7;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-find-error {
  color: #f70000;
  font-size: 12px;
  display: none;
  max-width: 300px;
  overflow-wrap: break-word;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-findText.error {
  border-color: #f70000;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-count-indicator {
  position: absolute;
  right: 80px;
  top: 57%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 12px;
  pointer-events: none;
  visibility: hidden;
  z-index: 10;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-toggle-advanced-options .arrow {
  font-size: 15px;
  transition: transform 0.3s ease;
  margin-right: 10px;
  font-size: 14px;
  margin-right: 4px;
  margin-top: 2px;
  font-weight: 100;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-advanced-options-panel {
  border-radius: 4px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-advanced-options-panel .fr-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-advanced-options-panel .fr-checkbox-group .fr-checkbox-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-advanced-options-panel .fr-checkbox-group .fr-checkbox-row input[type="checkbox"]:focus-visible {
  outline: 2px solid #0098f7;
  outline-offset: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-toggle-btn {
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-arrow {
  margin-right: 5px;
  font-size: 12px;
  margin-top: 1px;
  position: absolute;
  right: 15px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-disabled svg.fr-arrow-button {
  fill: #a9a9a9;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-arrow-button {
  width: 12px;
  height: 12px;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-layer .fr-body .fr-btn-active-popup {
  background: #d6d6d6;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-highlight {
  background-color: #ff0;
}

/* line 7, node_modules/froala-editor/css/plugins/find_and_replace.min.css */
.fr-find-replace-current-highlight {
  background-color: orange;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
textarea.fr-code {
  display: none;
  width: 100%;
  resize: none;
  -moz-resize: none;
  -webkit-resize: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  padding: 10px;
  margin: 0;
  font-family: "Courier New",monospace;
  font-size: 14px;
  background: #FFF;
  color: #000;
  outline: none;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-rtl textarea.fr-code {
  direction: rtl;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box .CodeMirror {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-code-view textarea.fr-code {
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-code-view .fr-element, .fr-box.fr-code-view .fr-placeholder, .fr-box.fr-code-view .fr-iframe {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-code-view .CodeMirror {
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-inline.fr-code-view .fr-command.fr-btn.html-switch {
  display: block;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-inline .fr-command.fr-btn.html-switch {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  background: #FFF;
  color: #333;
  -moz-outline: 0;
  outline: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  padding: 8px 7px;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-inline .fr-command.fr-btn.html-switch i {
  font-size: 24px;
  width: 24px;
  text-align: center;
}

/* line 7, node_modules/froala-editor/css/plugins/code_view.min.css */
.fr-box.fr-inline .fr-command.fr-btn.html-switch.fr-desktop:hover {
  background: #ebebeb;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-wrapper-markdown {
  display: flex;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view {
  width: calc(52% - 1px);
  box-sizing: inherit;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-editor {
  width: calc(48% - 1px);
  box-sizing: inherit;
  background-color: #eee;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-editor > p {
  margin: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > p {
  margin-top: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.gutter-horizontal {
  display: flex;
  z-index: 9;
  background-color: #dadada;
  cursor: col-resize;
  width: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.e-resize-handler {
  z-index: 9;
  width: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  position: relative;
  font-size: 10px;
  color: #c5c5c5;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > dt {
  font-weight: 700;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  background-color: #f8f8f8;
  border: 1px solid #dfdfdf;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > code {
  background-color: #f8f8f8;
  border-color: #dfdfdf;
  border-style: solid;
  border-width: 1px;
  color: #333;
  font-family: Consolas,"Liberation Mono",Courier,monospace;
  font-weight: normal;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > pre code {
  background-color: transparent;
  border: 0;
  padding: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > sup {
  top: -.5em;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.footnote-a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.blockquote {
  margin: 0 0 1rem;
  border-left: 5px solid #eee;
  padding: 10px 20px;
  font-size: 1.25rem;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  background-color: transparent;
  border-spacing: 0;
  border-collapse: collapse;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > table > tbody > tr > td, .fr-markdown-view > table > tbody > tr > th, .fr-markdown-view > table > thead > tr > td, .fr-markdown-view > table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 1px solid #ddd;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > table > thead > tr > td, .fr-markdown-view > table > thead > tr > th {
  border-bottom-width: 2px;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > table > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > a {
  color: #337ab7;
  text-decoration: none;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > h1 {
  font-size: 2em !important;
}

/* line 7, node_modules/froala-editor/css/plugins/markdown.min.css */
.fr-markdown-view > h2 {
  font-size: 1.5em !important;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal {
  text-align: left;
  padding: 20px 20px 10px;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table {
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table + table {
  margin-top: 20px;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tr {
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table th {
  text-align: left;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table th, .fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table td {
  padding: 6px 0 4px;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody tr {
  border-bottom: solid 1px #ebebeb;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody td:first-child {
  width: 60%;
  color: #646464;
}

/* line 7, node_modules/froala-editor/css/plugins/help.min.css */
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody td:nth-child(n+2) {
  letter-spacing: 0.5px;
}

/*!
 * froala_editor v4.7.1 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */
/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-quick-insert {
  position: absolute;
  z-index: 2147483639;
  white-space: nowrap;
  padding-right: 10px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-quick-insert a.fr-floating-btn svg {
  margin: 8px;
  width: 24px;
  height: 24px;
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-quick-insert.fr-on a.fr-floating-btn svg {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-quick-insert.fr-hidden {
  display: none;
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-qi-helper {
  position: absolute;
  z-index: 3;
  padding-left: 20px;
  white-space: nowrap;
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-qi-helper a.fr-btn.fr-floating-btn {
  text-align: center;
  padding: 6px 10px 10px 10px;
  display: inline-block;
  color: #222;
  background: #FFF;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-qi-helper a.fr-btn.fr-floating-btn svg {
  fill: #222;
}

/* line 7, node_modules/froala-editor/css/plugins/quick_insert.min.css */
.fr-qi-helper a.fr-btn.fr-floating-btn.fr-size-1 {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/* line 26, app/assets/stylesheets/application.sass */
html {
  height: 100%;
}

/* line 29, app/assets/stylesheets/application.sass */
.logo-invert {
  filter: invert(1);
  object-fit: contain;
}

/* line 33, app/assets/stylesheets/application.sass */
div.card {
  border: 1px solid rgba(110, 120, 140, 0.2);
}

/* line 37, app/assets/stylesheets/application.sass */
.fr-box:not(.fr-csp-has-table) .fr-toolbar [data-cmd="tableProperties"] {
  display: none !important;
}

/* line 41, app/assets/stylesheets/application.sass */
.fr-element table.fr-table-borders,
.customer-success-plan-content .fr-view table.fr-table-borders {
  border-collapse: collapse;
}

/* line 45, app/assets/stylesheets/application.sass */
.fr-element table.fr-table-borders th,
.fr-element table.fr-table-borders td,
.customer-success-plan-content .fr-view table.fr-table-borders th,
.customer-success-plan-content .fr-view table.fr-table-borders td {
  border: 1px solid #000;
}

/* line 49, app/assets/stylesheets/application.sass */
.fr-element table.fr-alternate-rows tbody tr:nth-child(even),
.customer-success-plan-content .fr-view table.fr-alternate-rows tbody tr:nth-child(even) {
  background-color: rgba(231, 234, 243, 0.5);
}

/* line 53, app/assets/stylesheets/application.sass */
.customer-success-plan-content {
  background-color: rgba(231, 234, 243, 0.5);
}

/* line 56, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view {
  overflow-wrap: break-word;
}

/* line 59, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view img {
  max-width: 100%;
  height: auto;
}

/* line 63, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: #fff;
  border-collapse: collapse;
}

/* line 69, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view ul, .customer-success-plan-content .fr-view ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* line 73, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view h1, .customer-success-plan-content .fr-view h2, .customer-success-plan-content .fr-view h3, .customer-success-plan-content .fr-view h4, .customer-success-plan-content .fr-view h5, .customer-success-plan-content .fr-view h6 {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

/* line 77, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view .fr-video {
  margin-bottom: 1rem;
}

/* line 80, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view .fr-video iframe,
.customer-success-plan-content .fr-view .fr-video video {
  max-width: 100%;
}

/* line 84, app/assets/stylesheets/application.sass */
.customer-success-plan-content .fr-view pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 88, app/assets/stylesheets/application.sass */
.hidden {
  font-size: 0 !important;
  width: 1px !important;
  height: 1px !important;
  display: inline-block !important;
  overflow: hidden !important;
  position: absolute !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* line 102, app/assets/stylesheets/application.sass */
.btn.btn-primary {
  --bs-btn-bg: #1D274A;
  --bs-btn-border-color: #1D274A;
  --bs-btn-hover-bg: #192340;
  --bs-btn-hover-border-color: #151d37;
  --bs-btn-active-bg: #151d37;
  --bs-btn-active-border-color: #151d37;
  --bs-btn-disabled-bg: #1D274A;
  --bs-btn-disabled-border-color: #1D274A;
}

/* line 112, app/assets/stylesheets/application.sass */
.btn.btn-primary:hover {
  box-shadow: 0 4px 11px rgba(29, 39, 74, 0.35);
}

/* line 115, app/assets/stylesheets/application.sass */
.btn.btn-ghost-secondary:hover, .btn.btn-ghost-secondary:focus {
  color: #1D274A;
  background-color: rgba(29, 39, 74, 0.1);
}

/* line 119, app/assets/stylesheets/application.sass */
.btn.btn-ghost-secondary:active {
  border-color: #1D274A !important;
}

/* line 122, app/assets/stylesheets/application.sass */
::-moz-selection {
  color: #DDA024 !important;
  background-color: rgba(221, 160, 36, 0.1) !important;
}

/* line 125, app/assets/stylesheets/application.sass */
::selection {
  color: #DDA024 !important;
  background-color: rgba(221, 160, 36, 0.1) !important;
}

/* line 128, app/assets/stylesheets/application.sass */
.bg-primary ::-moz-selection {
  color: #DDA024 !important;
  background-color: rgba(221, 160, 36, 0.1) !important;
}

/* line 131, app/assets/stylesheets/application.sass */
.bg-primary ::selection {
  color: #DDA024 !important;
  background-color: rgba(221, 160, 36, 0.1) !important;
}

/* line 135, app/assets/stylesheets/application.sass */
html a, a.btn-link {
  color: #1E003F;
}

/* line 138, app/assets/stylesheets/application.sass */
html a:hover, a:active, a.btn-link:hover, a.btn-link:active {
  color: rgba(29, 39, 74, 0.8);
}

/* line 141, app/assets/stylesheets/application.sass */
a.underlined {
  text-decoration: underline !important;
}

/* line 145, app/assets/stylesheets/application.sass */
#user {
  height: 27px;
  width: 27px;
  background-color: #1D274A;
  border-radius: 50%;
  float: right;
}

/* line 151, app/assets/stylesheets/application.sass */
#user span {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 19px;
  text-transform: uppercase;
}

/* line 158, app/assets/stylesheets/application.sass */
.navbar-dropdown-account-wrapper {
  padding: 0.20rem;
}

/* line 160, app/assets/stylesheets/application.sass */
#header .navbar-dropdown-account-wrapper .avatar.avatar-sm {
  box-sizing: border-box;
  border: 0.5px solid rgba(110, 120, 140, 0.35);
  height: 27px;
  width: 27px;
}

/* line 166, app/assets/stylesheets/application.sass */
#header .navbar-dropdown-account-wrapper .avatar.avatar-sm .avatar-img {
  height: 100%;
  width: 100%;
}

/* line 170, app/assets/stylesheets/application.sass */
#header .navbar-dropdown-account-wrapper .avatar.avatar-sm .avatar-status {
  display: none;
}

/* line 173, app/assets/stylesheets/application.sass */
.navbar-dropdown-account .small,
.navbar-dropdown-account .text-muted {
  opacity: 0.7;
}

/* line 178, app/assets/stylesheets/application.sass */
.navbar-dropdown-account .dropdown-item:hover, .navbar-dropdown-account .dropdown-item:focus, .navbar-dropdown-account .dropdown-item:active,
.navbar-dropdown-account button.dropdown-item:hover,
.navbar-dropdown-account button.dropdown-item:focus,
.navbar-dropdown-account button.dropdown-item:active {
  background-color: #F4EACD !important;
  color: #DDA024 !important;
}

/* line 183, app/assets/stylesheets/application.sass */
.navbar-dropdown-account .dropdown-item:hover i, .navbar-dropdown-account .dropdown-item:focus i, .navbar-dropdown-account .dropdown-item:active i,
.navbar-dropdown-account button.dropdown-item:hover i,
.navbar-dropdown-account button.dropdown-item:focus i,
.navbar-dropdown-account button.dropdown-item:active i {
  color: #DDA024;
}

/* line 185, app/assets/stylesheets/application.sass */
#user {
  height: 27px;
  width: 27px;
  background-color: #1D274A;
  border-radius: 50%;
  float: right;
}

/* line 191, app/assets/stylesheets/application.sass */
#user span {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 19px;
  text-transform: uppercase;
}

/* line 198, app/assets/stylesheets/application.sass */
.navbar-dropdown-account-wrapper {
  padding: 0.20rem;
}

/* line 200, app/assets/stylesheets/application.sass */
#header .navbar-dropdown-account-wrapper .avatar.avatar-sm {
  box-sizing: border-box;
  border: 0.5px solid rgba(110, 120, 140, 0.35);
  height: 27px;
  width: 27px;
}

/* line 206, app/assets/stylesheets/application.sass */
#header .navbar-dropdown-account-wrapper .avatar.avatar-sm .avatar-img {
  height: 100%;
  width: 100%;
}

/* line 210, app/assets/stylesheets/application.sass */
#header .navbar-dropdown-account-wrapper .avatar.avatar-sm .avatar-status {
  display: none;
}

/* line 213, app/assets/stylesheets/application.sass */
.navbar-dropdown-account .small,
.navbar-dropdown-account .text-muted {
  opacity: 0.7;
}

/* line 218, app/assets/stylesheets/application.sass */
.navbar-dropdown-account .dropdown-item:hover, .navbar-dropdown-account .dropdown-item:focus, .navbar-dropdown-account .dropdown-item:active,
.navbar-dropdown-account button.dropdown-item:hover,
.navbar-dropdown-account button.dropdown-item:focus,
.navbar-dropdown-account button.dropdown-item:active {
  background-color: #F4EACD !important;
  color: #DDA024 !important;
}

/* line 223, app/assets/stylesheets/application.sass */
.navbar-dropdown-account .dropdown-item:hover i, .navbar-dropdown-account .dropdown-item:focus i, .navbar-dropdown-account .dropdown-item:active i,
.navbar-dropdown-account button.dropdown-item:hover i,
.navbar-dropdown-account button.dropdown-item:focus i,
.navbar-dropdown-account button.dropdown-item:active i {
  color: #DDA024;
}

/* line 225, app/assets/stylesheets/application.sass */
#page_header {
  flex: 1 1 auto !important;
}

/* line 227, app/assets/stylesheets/application.sass */
a.header-btn-mobile {
  display: none;
  margin-bottom: 1.25rem;
}

@media only screen and (max-width: 1200px) {
  /* line 232, app/assets/stylesheets/application.sass */
  div.page-header {
    margin-left: 1rem;
  }
}

@media (max-width: 450px) {
  /* line 236, app/assets/stylesheets/application.sass */
  a.header-btn {
    display: none;
  }
  /* line 238, app/assets/stylesheets/application.sass */
  a.header-btn-mobile {
    display: block;
  }
}

@media (max-width: 290px) {
  /* line 242, app/assets/stylesheets/application.sass */
  a.navbar-brand {
    margin-right: 0.5rem;
  }
}

/* line 246, app/assets/stylesheets/application.sass */
.breadcrumb {
  --bs-breadcrumb-divider: "›";
}

/* line 249, app/assets/stylesheets/application.sass */
.breadcrumb li.breadcrumb-item {
  font-size: 16px;
  color: #363a3d;
}

/* line 252, app/assets/stylesheets/application.sass */
.breadcrumb li.breadcrumb-item:last-of-type {
  padding-right: var(--bs-breadcrumb-item-padding-x);
}

/* line 255, app/assets/stylesheets/application.sass */
.breadcrumb li.breadcrumb-item.active, .breadcrumb a.breadcrumb-link:hover, .breadcrumb a.breadcrumb-link {
  color: #1E003F;
}

@media (max-width: 768px) {
  /* line 258, app/assets/stylesheets/application.sass */
  ol.breadcrumb {
    display: none;
  }
}

/* line 265, app/assets/stylesheets/application.sass */
.masquerade-banner {
  align-items: center;
  background-color: #F4EACD;
  color: #DDA024;
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.25rem;
  justify-content: center;
  padding: 0 1rem;
  position: sticky;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1031;
}

/* line 281, app/assets/stylesheets/application.sass */
aside.navbar-vertical-fixed {
  top: 0;
  top: 0;
}

/* line 284, app/assets/stylesheets/application.sass */
header#header.navbar {
  position: sticky;
  top: 0;
  box-sizing: border-box;
  height: auto;
  min-height: 3.5rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(231, 234, 243, 0.7) !important;
  box-shadow: none !important;
}

/* line 295, app/assets/stylesheets/application.sass */
header#header.navbar .navbar-nav-wrap {
  height: auto;
  min-height: calc(3.5rem - 0.7rem);
  align-items: center;
}

/* line 301, app/assets/stylesheets/application.sass */
body.masquerading aside.navbar-vertical-fixed {
  top: 2.25rem;
}

/* line 303, app/assets/stylesheets/application.sass */
body.masquerading header#header.navbar {
  top: 2.25rem;
}

/* line 306, app/assets/stylesheets/application.sass */
header.navbar, div.navbar-vertical-footer-offset {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14);
  border: none;
}

/* line 309, app/assets/stylesheets/application.sass */
.navbar-brand {
  height: 3.875rem;
}

/* line 311, app/assets/stylesheets/application.sass */
.navbar-vertical-aside hr {
  margin-top: 1.1rem;
}

/* line 313, app/assets/stylesheets/application.sass */
aside.navbar-vertical-aside .navbar-brand {
  height: 3.5rem;
}

/* line 315, app/assets/stylesheets/application.sass */
div.navbar-vertical-footer {
  padding: 0.5rem 1rem;
  border: none;
}

/* line 318, app/assets/stylesheets/application.sass */
div.navbar-vertical-footer hr {
  margin: 0.75rem 0;
}

/* line 322, app/assets/stylesheets/application.sass */
#partner-brand-logo-container {
  height: auto;
  margin: 0;
}

/* line 325, app/assets/stylesheets/application.sass */
#partner-brand-logo-img {
  padding: 0.5rem 2rem 0.5rem 2rem;
}

/* line 328, app/assets/stylesheets/application.sass */
.navbar-vertical-aside-mini-mode #partner-brand-logo-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* line 331, app/assets/stylesheets/application.sass */
.navbar-vertical-aside-mini-mode .bi-exclamation-circle {
  display: none;
}

/* line 333, app/assets/stylesheets/application.sass */
.navbar-vertical-aside-mini-mode #portal-text {
  padding-top: 1rem !important;
  font-size: 12px;
}

/* line 336, app/assets/stylesheets/application.sass */
.brand-logo-img {
  max-height: 8rem;
  padding: 0.5rem 1rem 0rem 1rem;
  width: 100%;
}

@media (max-width: 376px) {
  /* line 342, app/assets/stylesheets/application.sass */
  div.card-footer {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/* line 347, app/assets/stylesheets/application.sass */
div.nav-vertical.nav-pills .nav-link {
  color: rgba(29, 39, 74, 0.8);
  font-size: 15px;
  font-weight: 500;
}

/* line 351, app/assets/stylesheets/application.sass */
div.nav-vertical.nav-pills .nav-link.active, div.nav-vertical.nav-pills .nav-link:hover {
  background-color: #F4EACD;
  color: #DDA024;
}

/* line 355, app/assets/stylesheets/application.sass */
div.nav-vertical.nav-pills .nav-item .nav-link:hover, .nav-vertical.nav-pills .nav-item .nav-link[aria-expanded]:hover {
  color: #DDA024;
  font-size: larger;
}

/* line 360, app/assets/stylesheets/application.sass */
.theme-selector-as-nav-link button {
  height: 27px;
  width: 27px;
  background-color: #fff;
  border: 0.5px solid rgba(110, 120, 140, 0.35);
  border-radius: 50%;
  box-sizing: border-box;
  float: right;
  padding-top: 0.125rem;
  color: #1E003F;
}

/* line 370, app/assets/stylesheets/application.sass */
.theme-selector-as-nav-link button:hover,
.theme-selector-as-nav-link button:active,
.theme-selector-as-nav-link button:focus,
.theme-selector-as-nav-link button:focus-visible {
  height: 27px;
  width: 27px;
  background-color: #fff !important;
  border: 0.5px solid rgba(110, 120, 140, 0.5) !important;
  border-radius: 50% !important;
  float: right;
}

/* line 382, app/assets/stylesheets/application.sass */
.nav-item > form > .wiki-nav-link {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  text-align: left;
  width: 100%;
}

/* line 390, app/assets/stylesheets/application.sass */
.nav-item > form > .wiki-nav-link .wiki-nav-external {
  font-size: 0.75rem;
  margin-left: 0.35rem;
  opacity: 0.75;
}

/* line 396, app/assets/stylesheets/application.sass */
.bi-arrow-bar-left::before, .bi-arrow-bar-right::before {
  color: #DDA024;
}

/* line 398, app/assets/stylesheets/application.sass */
button.navbar-aside-toggler {
  background-color: #F4EACD;
  width: 2.20625rem;
  height: 2.20625rem;
}

/* line 402, app/assets/stylesheets/application.sass */
aside.navbar-vertical-aside .nav.nav-pills {
  padding-left: 0;
  padding-right: 0;
}

/* line 405, app/assets/stylesheets/application.sass */
div.card-navbar-nav {
  padding: 0;
}

/* line 409, app/assets/stylesheets/application.sass */
.toast .bg-success {
  background-color: #F4EACD !important;
  color: #DDA024 !important;
}

/* line 412, app/assets/stylesheets/application.sass */
button.btn-close-white {
  filter: invert(82%) sepia(32%) saturate(3971%) hue-rotate(349deg) brightness(95%) contrast(81%);
}

/* line 416, app/assets/stylesheets/application.sass */
.avatar-sm.avatar-circle {
  width: 30px;
  height: 30px;
}

/* line 421, app/assets/stylesheets/application.sass */
#details.table #type {
  min-width: 77px;
}

/* line 423, app/assets/stylesheets/application.sass */
#details.table #qty {
  min-width: 42px;
}

/* line 425, app/assets/stylesheets/application.sass */
#details.table #start {
  min-width: 92px;
}

/* line 427, app/assets/stylesheets/application.sass */
#details.table #end {
  min-width: 92px;
}

/* line 429, app/assets/stylesheets/application.sass */
#details.table #status {
  min-width: 61px;
}

/* line 431, app/assets/stylesheets/application.sass */
#details.table #sub-id {
  min-width: 58px;
}

/* line 435, app/assets/stylesheets/application.sass */
.toast {
  --bs-toast-bg: rgba(255, 255, 255, 1.0) !important;
}

/* line 438, app/assets/stylesheets/application.sass */
.card-padding {
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
}

/* line 441, app/assets/stylesheets/application.sass */
.dashboard-2-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* line 445, app/assets/stylesheets/application.sass */
.dashboard-2-container > .card-span-2-columns {
  grid-column: span 2;
}

@media (max-width: 768px) {
  /* line 441, app/assets/stylesheets/application.sass */
  .dashboard-2-container {
    grid-template-columns: 1fr;
  }
  /* line 449, app/assets/stylesheets/application.sass */
  .dashboard-2-container > .card-span-2-columns {
    grid-column: span 1;
  }
}

/* line 452, app/assets/stylesheets/application.sass */
.dashboard-3-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* line 456, app/assets/stylesheets/application.sass */
.dashboard-3-container > .engagements_card {
  grid-column: span 2;
}

@media (max-width: 1200px) {
  /* line 452, app/assets/stylesheets/application.sass */
  .dashboard-3-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* line 452, app/assets/stylesheets/application.sass */
  .dashboard-3-container {
    grid-template-columns: 1fr;
  }
  /* line 462, app/assets/stylesheets/application.sass */
  .dashboard-3-container > .engagements_card {
    grid-column: span 1;
  }
}

/* line 467, app/assets/stylesheets/application.sass */
.dashboard-2-container .card-header-title,
.dashboard-3-container .card-header-title {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* line 472, app/assets/stylesheets/application.sass */
.card-centered .card-body.card-body-height {
  justify-content: flex-start;
  align-items: flex-start;
}

/* line 475, app/assets/stylesheets/application.sass */
.card-centered .card-body.card-body-height > * {
  align-self: center;
  max-width: 100%;
}

/* line 480, app/assets/stylesheets/application.sass */
tr.accordion-collapse tr {
  background-color: rgba(231, 234, 243, 0.5) !important;
}

/* line 484, app/assets/stylesheets/application.sass */
.cisco-ready-row .accordion-button, .accordion-table-row .accordion-button, .cisco-ready-nested-row .accordion-button {
  background-color: transparent !important;
}

/* line 487, app/assets/stylesheets/application.sass */
.cisco-ready-row .accordion-button.no-padding, .accordion-table-row .accordion-button.no-padding, .cisco-ready-nested-row .accordion-button.no-padding {
  padding: 0 !important;
}

/* line 490, app/assets/stylesheets/application.sass */
.cisco-ready-row .accordion-button:after, .accordion-table-row .accordion-button:after, .cisco-ready-nested-row .accordion-button:after {
  order: -1;
  margin-left: 0 !important;
  margin-right: 0.5em !important;
}

/* line 495, app/assets/stylesheets/application.sass */
tr.cisco-ready-nested-row {
  background-color: rgba(231, 234, 243, 0.5) !important;
}

/* line 498, app/assets/stylesheets/application.sass */
tr.cisco-ready-sub-nested-row {
  background-color: #e7eaf3 !important;
}

/* line 502, app/assets/stylesheets/application.sass */
.nested-table-row thead.thead-light th {
  background-color: transparent !important;
}

/* line 506, app/assets/stylesheets/application.sass */
.webex-licenses thead.thead-light.nested-table-header {
  top: 43px;
}

/* line 508, app/assets/stylesheets/application.sass */
.webex-licenses thead.thead-light th {
  background-color: #e7eaf3 !important;
}

/* line 511, app/assets/stylesheets/application.sass */
.bi-door-open-fill {
  margin-bottom: 0.1rem;
  font-size: 0.6rem;
}

/* line 517, app/assets/stylesheets/application.sass */
table .thead-light {
  position: sticky;
  top: 0;
  z-index: 3;
}

/* line 521, app/assets/stylesheets/application.sass */
.datatable-custom {
  max-height: 80vh;
  overflow: auto;
}

/* line 525, app/assets/stylesheets/application.sass */
.modal-paper-trail {
  --bs-modal-width: 850px;
}

@media (max-width: 767.98px) {
  /* line 525, app/assets/stylesheets/application.sass */
  .modal-paper-trail {
    --bs-modal-width: 100%;
  }
}

/* line 533, app/assets/stylesheets/application.sass */
input[type="date"] {
  padding: 0.6125rem 1rem;
  color: #677788;
  border: 0.0625rem solid rgba(231, 234, 243, 0.7);
  border-radius: 0.3125rem;
}

/* line 539, app/assets/stylesheets/application.sass */
th.description {
  max-width: 250px;
}

/* line 543, app/assets/stylesheets/application.sass */
.flash-background {
  animation: flashBackground 1s forwards;
}

@keyframes flashBackground {
  0% {
    background-color: rgba(45, 100, 189, 0.25);
  }
  100% {
    background-color: initial;
  }
}

/* line 553, app/assets/stylesheets/application.sass */
.crm-navbar {
  background-color: #fff;
  border: 1px solid rgba(110, 120, 140, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0rem 0.375rem 0.75rem rgba(140, 152, 164, 0.075);
  padding: 0.5rem;
}

/* line 560, app/assets/stylesheets/application.sass */
.crm-navbar .nav-pills {
  flex-wrap: nowrap;
  gap: 0.15rem;
  margin-bottom: 0;
  overflow-x: auto;
}

/* line 566, app/assets/stylesheets/application.sass */
.crm-navbar .nav-pills .nav-link {
  background-color: transparent;
  border: 0;
  color: rgba(29, 39, 74, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

/* line 574, app/assets/stylesheets/application.sass */
.crm-navbar .nav-pills .nav-link:hover, .crm-navbar .nav-pills .nav-link:focus {
  background-color: rgba(29, 39, 74, 0.08);
  color: #1D274A;
}

/* line 579, app/assets/stylesheets/application.sass */
.crm-navbar .nav-pills .nav-link.active {
  background-color: rgba(29, 39, 74, 0.1);
  color: #1D274A;
}

/* line 584, app/assets/stylesheets/application.sass */
#navbarNav {
  border-radius: 0.75rem;
}

@media (max-width: 992px) {
  /* line 584, app/assets/stylesheets/application.sass */
  #navbarNav {
    margin-top: 0.5rem;
  }
  /* line 589, app/assets/stylesheets/application.sass */
  #navbarNav .navbar-nav {
    flex-direction: column;
  }
}

/* line 592, app/assets/stylesheets/application.sass */
.three-dots-badge {
  position: absolute !important;
  font-size: 8px !important;
  right: 5px;
  top: 1px;
  border-radius: 50% !important;
}

/* line 599, app/assets/stylesheets/application.sass */
.cursor-pointer {
  cursor: pointer;
}

/* line 604, app/assets/stylesheets/application.sass */
.nested-table-row thead.thead-light th {
  background-color: transparent !important;
}

/* line 609, app/assets/stylesheets/application.sass */
.webex-licenses thead.thead-light.nested-table-header {
  top: 43px;
  position: sticky;
  z-index: 3;
}

/* line 613, app/assets/stylesheets/application.sass */
.webex-licenses thead.thead-light th {
  background-color: #e7eaf3 !important;
}

/* line 616, app/assets/stylesheets/application.sass */
.word-break {
  word-break: break-word;
  white-space: normal;
}

/* line 620, app/assets/stylesheets/application.sass */
.font-weight-bold {
  font-weight: bold;
}

/* line 623, app/assets/stylesheets/application.sass */
.z-index-999 {
  z-index: 999 !important;
}

/* line 626, app/assets/stylesheets/application.sass */
.z-index-10 {
  z-index: 10 !important;
}

/* line 629, app/assets/stylesheets/application.sass */
.z-index-20 {
  z-index: 20 !important;
}

/* line 632, app/assets/stylesheets/application.sass */
.z-index-30 {
  z-index: 30 !important;
}

/* line 635, app/assets/stylesheets/application.sass */
.border-bottom {
  border-bottom: 1px solid;
}

/* line 638, app/assets/stylesheets/application.sass */
.border-red {
  border: 2px solid #FF4B4B !important;
}

/* line 641, app/assets/stylesheets/application.sass */
.text-green {
  color: #6ABF4B;
}

/* line 644, app/assets/stylesheets/application.sass */
.text-red {
  color: #FF4B4B;
}

/* line 647, app/assets/stylesheets/application.sass */
.w-20 {
  width: 20% !important;
}

/* line 650, app/assets/stylesheets/application.sass */
.customer-filter-label {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 150px;
  text-align: start;
}

/* line 657, app/assets/stylesheets/application.sass */
.float-right {
  float: right !important;
}
