/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *


 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
strong,
b {
  font-weight: bold;
}
em,
i {
  font-style: italic;
}
a img {
  border: none;
}
input {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
/* END RESET*/
/* BUTTON STYLES */

/* Page navigation */
.form-navigation-bar {
  /* Box Model */
  margin: 0 0 21px -8px;
}

/* Section navigation */
.form-entry-navigation {
  /* Positioning and Layout */
  display: flex;
  flex-direction: column;

  /* Box Model */
  width: 108px;

  /* Typography */
  line-height: 20px;
}

.button-margin {
  /* Box Model */
  margin: 2px 0 2px 8px;
}

/* Navigation button */
.navigation-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.form-navigation-bar .navigation-button {
  /* Box Model */
  height: 27px;
  padding: 0 8px;
}

.form-entry-navigation .navigation-button {
  /* Box Model */
  height: 20px;
  width: 100px;
  padding: 0 8px;
}

/* Form button */
.form-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;
  width: 100px;
  height: 22px;

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.form-confirmation-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;
  height: 27px;

  /* Typography */
  font-size: 12px;
  text-align: center;
}

/* Grey button */
.grey-button {
  /* Box Model */
  border: 1px solid #aaa;

  /* Typography */
  color: #aaa;

  /* Visual Appearance */
  background-color: transparent;
}

.grey-button:hover {
  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: #aaa;
}

/* Green button */
.green-button {
  /* Box Model */
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid lime;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 12px;
  text-align: center;
  color: lime;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.green-button:hover {
  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: lime;
}

/* Red button */
.red-button {
  /* Box Model */
  box-sizing: border-box;
  border: 1px solid red;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 12px;
  text-align: center;
  color: red;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.red-button:hover {
  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: red;
}

/* Wide button */
.form-title-button {
  /* Box Model */
  margin: 0 0 25px 0;
}

.form-end-button {
  /* Box Model */
  margin: 0.5em 0 0 0;
}

.form-button-wide {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  box-sizing: border-box;
  width: 100%;
  height: 25px;
  /* border: 1px solid lime; */

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  /* color: lime; */
  text-align: center;
  text-decoration: none;
}

.form-button-wide:hover {
  /* Visual Appearance */
  /* background-color: lime; */

  /* Typography */
  color: #222;
}

/* Select styles */
.select-style {
  /* Positioning and Layout */
  overflow: hidden;

  /* Box Model */
  border: 1px solid #aaa;
  border-radius: 0;
  padding: 8px;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.select-style:hover {
  /* Typography */
  color: blue;

  /* Visual Appearance */
  border: 1px solid blue;
}

.select-style select {
  /* Box Model */
  padding: 5px 4px;
  border: none;

  /* Visual Appearance */
  box-shadow: none;
  background-image: none;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.select-style select:focus {
  /* Visual Appearance */
  outline: none;
}

/* Checkbox styles */
.checkbox-section-wrapper {
  /* Positioning and Layout */
  overflow: hidden;
}

.checkbox-wrapper {
  /* Positioning and Layout */
  display: box;
  float: left;

  /* Box Model */
  margin: 1em 1em 1.75em 0;

  /* Miscellaneous */
  overflow: hidden;
}

.checkbox-field {
  /* Positioning and Layout */
  float: left;
}

.checkbox {
  /* Box Model */
  width: 3em;
  height: 3em;
  margin: 0;
  box-sizing: border-box;

  /* Visual Appearance */
  background-color: #aaa;
  border: 1px solid #aaa;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.checkbox:checked {
  /* Box Model */
  border: 1px solid #aaa;

  /* Visual Appearance */
  background-color: #111;
}

.checkbox-title {
  /* Positioning and Layout */
  float: left;
  box-sizing: border-box;

  /* Box Model */
  padding: 4px 0 4px 8px;
  margin: 0 0.5em 0 0;
}

.checkbox-list-wrapper {
  /* Positioning and Layout */
  display: flex;
  flex-direction: column;
}

.checkbox-list-entry-wrapper {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  margin: 8px 1em 8px 0;
  overflow: hidden;
}

.checkbox-country {
  /* Box Model */
  width: 2em;
  height: 2em;
  margin: 0;
  border: 1px solid #aaa;

  /* Visual Appearance */
  background-color: #aaa;

  /* Miscellaneous */
  -webkit-appearance: none;
  box-sizing: border-box;
}

.checkbox-country:checked {
  /* Box Model */
  border: 1px solid #aaa;

  /* Visual Appearance */
  background-color: #111;
}

.select-field-style {
  /* Box Model */
  margin: 1em 0 1.75em 0;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;

  /* Miscellaneous */
  overflow: hidden;
  -webkit-appearance: none;
}

.select-field-style select {
  /* Box Model */
  border: none;

  /* Typography */
  color: blue;

  /* Visual Appearance */
  /*background: transparent;*/
  background-image: none;
  box-shadow: none;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.form-datedata {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Typography */
  /*text-align: center;*/
}

.select-datefield-style {
  /* Box Model */
  margin: 1em 5px 1.75em 0;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;

  /* Miscellaneous */
  overflow: hidden;
  -webkit-appearance: none;
}

.select-datefield-style select {
  /* Box Model */
  border: none;

  /* Typography */
  color: blue;

  /* Visual Appearance */
  /*background: transparent;*/
  background-image: none;
  box-shadow: none;

  /* Miscellaneous */
  -webkit-appearance: none;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
}

@media (max-width: 500px) {
}
.keywords-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.post-keyword {
  float: left;
  display: flex;
  align-items: center;

  /* Box Model */
  height: 35px;
  margin: 0.25vw;
  padding: 4px 12px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #aaa;
}

.post-keyword button {
  background: none;
  border: none;
  margin-left: 5px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #aaa;
}

.suggestions-container {
  /* border: 1px dotted #ccc; */
  margin-top: 5px;
  max-height: 150px;
  overflow-y: auto;
  background-color: #111;
  /* position: absolute; */
  z-index: 10;
  width: 62vw;
}

.suggestion {
  padding: 10px;
  cursor: pointer;
}

.suggestion:hover {
  border: 1px dotted #aaa;
  box-sizing: border-box;
  /* background-color: #f0f0f0; */
}
/* FORM GLOBAL STYLES */
.admin-form-wrapper {
  /* Positioning and Layout */
  flex: 0 0 79vw;

  /* Box Model */
  margin: 0 2vw 0 1vw;
}

.admin-form-container {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Box Model */
  padding: 0 0 2em 0;
}

.content-col {
  /* Positioning and Layout */
  flex: 1 62vw;

  /* Box Model */
  padding: 0 1vw 0 0;
  box-sizing: border-box;
}

.details-col {
  /* Positioning and Layout */
  flex: 1 0 14vw;

  /* Box Model */
  margin: -50px -2vw 0 0;
  padding: 50px 2vw 0 1vw;

  /* Visual Appearance */
  background-color: #222;
}

.admin-form-title {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  height: 50px;
  margin: 15px 0 15px 0;
  padding: 0;

  /* Typography */
  font-size: 2em;
  font-weight: bold;
  line-height: 50px;

  /* Miscellaneous */
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Cut off the text and add an ellipsis (...) */
}

/* FORM ENTRY STYLES */
.form-entrylist-container {
  /* Box Model */
  margin: 0 0 32px 0;
  border-bottom: 1px solid #aaa;
}

.form-navigation-wrapper {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Box Model */
  margin-top: -2px;
  /*padding: 4px 0 4px 0;*/
}

.form-navigation-wrapper a {
  /* Typography */
  text-decoration: none;
}

.form-section {
  /* Positioning and Layout */
  display: flex;
  flex-direction: row;

  /* Box Model */
  /*margin-top: -4px;*/
  padding: 4px 6px 4px 6px;
}

.form-section a {
  /* Typography */
  text-decoration: none;
}

.form-section-entryrow {
  /* Positioning and Layout */
  display: flex;
  flex: 1 1;
  flex-direction: row;

  /* Box Model */
  margin: 0 0 0 10px;
  padding: 6px 0 0 0;

  /* Typography */
  font-size: 1em;
  line-height: 1.5em;

  /* Miscellaneous */
  overflow: hidden;
}

.form-section-entryrow h2 {
  /* Box Model */
  -webkit-margin-before: 0.83em;
  -webkit-margin-after: 0.83em;
}

.form-section-entryrow p {
  /* Typography */
  font-size: 1em;
  font-weight: lighter;
  line-height: 1.5em;
}

.form-entry-links a {
  /* Typography */
  font-size: 1em;
  font-weight: lighter;
  line-height: 1.5em;
}

.entry-title-section {
  /* Positioning and Layout */
  flex: 0 0 100px;

  /* Box Model */
  /*margin: 0 5vw 0 0;*/
  padding-right: 1em;

  /* Typography */
  line-height: 1em;
}

.entry-list-section {
  /* Positioning and Layout */
  flex: 0 1 calc(62vw-400px);

  /* Box Model */
  margin: 0 5vw 0 0;

  /* Typography */
  line-height: 1em;
}

.category-colour {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  width: 5px;
  height: 54px;
  margin-right: 1vw;
}

.category-colour-outline {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  width: 7px;
  height: 72px;
  margin-right: 1vw;
  box-sizing: border-box;
}

.form-data {
  /* Positioning and Layout */
  display: flex;
  flex-direction: column;

  /* Box Model */
  padding: 0px 0 24px 0;
}

.form-label {
  /* Box Model */
  margin: 0 0 0.5em 0;

  /* Typography */
  font-size: 1.5em;
}

.form-field {
  /* Box Model */
  width: 61vw;
  /*margin: 1em 0 1.75em 0;*/
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #111;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.form-datafield {
  /* Box Model */
  width: 62vw;
  margin: 0 0 0 0;
  padding: 2px 8px 2px 8px;
  border: 1px dotted;
  box-sizing: border-box;
}

.form-postfield {
  /* Box Model */
  width: 62vw;
  margin: 0 0 0 0;
  padding: 2px 8px 2px 8px;
  border: 1px dotted;
  box-sizing: border-box;

  /* Typography */
  color: black;

  /* Visual Appearance */
  background-color: white;
}

.form-listing-wrapper {
  /* Visual Appearance */
  overflow: hidden;
}

.form-entry {
  /* Positioning and Layout */
  display: block;
  float: left;

  /* Box Model */
  margin: 1em 0.5em 1.1em 0;
  padding: 8px;
  border: 1px dotted;
  box-sizing: border-box;
}

.form-seal {
  /* Box Model */
  width: 16vw;

  /* Visual Appearance */
  background-color: #fff;
}

.form-seal-pad {
  /* Positioning and Layout */
  display: none;
}

.form-seal-mobile {
  /* Positioning and Layout */
  display: none;
}

/* FORM KEYWORD LIST STYLES */
.form-keywordlist-container {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  /*margin: -0.3vw -2vw 0 -0.3vw;*/
  box-sizing: border-box;

  /* Miscellaneous */
  overflow: hidden;
}

.form-keywordlist-box {
  /* Positioning and Layout */
  display: block;
  display: inline-block;
}

.form-keywordlist-box-input {
  /* Box Model */
  height: 27px;
  margin: 0 5px 10px 0;
  padding: 0 8px 0 8px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  /*color: #000;*/
  color: #aaa;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-keywordlist-box-input:hover {
  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: #aaa;
}

/* FORM WORDBOX LIST STYLES */
.form-wordboxlist-container {
  display: block;

  /* Box Model */
  margin: -0.25vw -2vw 25px -0.25vw;
  box-sizing: border-box;

  /* Miscellaneous */
  overflow: hidden;
}

.form-wordbox {
  /* Positioning and Layout */
  float: left;
}

.form-wordbox-entry {
  /* Box Model */
  height: 35px;
  margin: 0.25vw;
  padding: 4px 12px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #aaa;
}

.form-wordbox-button {
  /* Box Model */
  height: 35px;
  /* padding: 0 8px; */
  margin: 0.25vw;
  padding: 4px 12px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #aaa;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-wordbox-button:hover {
  /* Typography */
  text-decoration: none;
  color: #222;

  /* Visual Appearance */
  background-color: #aaa;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* FORM STYLES */
  .admin-form-wrapper {
    /* Positioning and Layout */
    flex: 0 0 73vw;

    /* Box Model */
    /*width: 84vw;*/
    margin: 0px 1vw 0 1vw;
  }

  .admin-form-container {
    /* Positioning and Layout */
    display: flex;
    flex-direction: column;

    /* Box Model */
    padding: 0 0 2em 0;
  }

  .content-col {
    /* Positioning and Layout */
    flex: 0 73vw;

    /* Box Model */
    margin: 0 0 2em 0;
    padding: 0 0 0 0;
    box-sizing: border-box;
  }

  .details-col {
    /* Positioning and Layout */
    display: none;
  }

  .form-data {
    /* Positioning and Layout */
    display: flex;
    flex-direction: column;
  }
  .form-field {
    /* Box Model */
    width: 73vw;
    margin: 0;
    box-sizing: border-box;
  }

  .form-datafield {
    /* Box Model */
    width: 73vw;
  }
  .select-style {
    /* Box Model */
    margin: 0;
  }
}

@media (max-width: 500px) {
  /* FORM GLOBAL STYLES */
  .admin-form-wrapper {
    /* Positioning and Layout */
    flex: 0 0 98vw;

    /* Box Model */
    /*width: 84vw;*/
    margin: 73px 1vw 0 1vw;
  }

  .form-navigation-wrapper {
    /* Positioning and Layout */
    flex-wrap: wrap;
  }

  /* FORM ENTRY STYLES */
  .entry-title-section {
    /* Positioning and Layout */
    flex: 0 0 80px;
  }

  /* FORM STYLES */
  .form-field {
    /* Box Model */
    width: 98vw;
    box-sizing: border-box;
  }

  .form-datafield {
    /* Box Model */
    width: 98vw;
  }
}
/* GLOBAL STYLES */

.image-container {
  /* Positioning and Layout */
  position: relative;

  /* Typography */
  text-align: center;
  color: white;
}

.tile-canvas {
  position: relative;
  text-align: center;
  color: white;
}

.hero-centered {
  /* Positioning and Layout */
  position: absolute;
  top: 50%;
  left: 50%;

  /* Miscellaneous */
  transform: translate(-50%, -50%);
}

.admin-content-wrapper h2 {
  /* Typography */
  text-transform: none;

  /* Visual Appearance */
  background-color: #222;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
}

@media (max-width: 500px) {
}
/* GLOBAL IMAGE STYLES */
/* used in entry show pages */
.form-image {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  width: 14vw;
  margin: 0 1vw 1vw 0;
}

/* used in entry edit pages */
.form-edit-hero {
  /* Box Model */
  width: 14vw;
}

/* FORM IMAGE LIST STYLES */
.form-imagelist-container {
  /* Positioning and Layout */
  display: block;
  box-sizing: border-box;

  /* Box Model */
  margin: -0.3vw -0.3vw 1em -0.3vw;
  overflow: hidden;
}

.form-imagelist-box {
  /* Positioning and Layout */
  /*position: absolute;*/
  float: left;

  /* Box Model */
  margin: 0.3vw;
  box-sizing: border-box;
}

/* Destyling button_to */
.form-imagelist-button {
  /* Box Model */
  padding: 0;
  border: none;

  /* Typography */
  font: inherit;
  color: inherit;

  /* Visual Appearance */
  background: none;

  /* Miscellaneous */
  cursor: pointer;
  outline: inherit;
}

/* used in image indexes */
.thumb-tile {
  /* Positioning and Layout */
  position: relative;
  display: block;

  /* Box Model */
  width: 11.92vw;
  height: 7.95vw;
}
/* used in image indexes */
/* used in image lists select_to, select_from */
.thumb-tile-small {
  /* Positioning and Layout */
  position: relative;
  display: block;

  /* Box Model */
  width: 5.66vw;
  height: 3.773vw;
  /* height: 4.245vw; */
  /*background-color: #FFF;*/
}

/* used in image indexes */
.thumb-tile-square {
  /* Positioning and Layout */
  position: relative;
  display: block;

  /* Box Model */
  height: 11.92vw;
  width: 11.92vw;
}

/* used in image indexes */
.thumb-tile-square-small {
  /*background-color: #FFF;*/
  position: relative;
  display: block;

  /* Box Model */
  height: 5.66vw;
  width: 5.66vw;
}

/* used in logo indexes */
.logo-tile-square {
  /* Positioning and Layout */
  /*position: relative;*/
  /*display: block;*/

  /* Box Model */
  height: 11.6vw;
  width: 11.6vw;
  /* width: 14vw;
  height: 14vw; */

  /* Visual Appearance */
  background-color: #fff;
}

.thumb-tile-title {
  /* Box Model */
  padding: 0.25em;

  /* Typography */
  font-weight: bold;
  font-size: 2em;
  color: #fff;

  /* Visual Appearance */
  background-color: rgba(0, 0, 0, 0.2);
}

.form-imagelist-title {
  /* Box Model */
  padding: 0.25em;

  /* Typography */
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}

.form-image-wrapper {
  padding: 0 0.5em 1em 0;
  line-height: 0;
  overflow: hidden;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* IMAGE STYLES */
  .form-imagelist-container {
    /* Box Model */
    margin: 0 -1vw 1em -1vw;
  }

  .form-imagelist-box {
    /* Box Model */
    margin: 1vw;
  }

  .thumb-tile-square {
    /* Box Model */
    width: 16.75vw;
    height: 16.75vw;
  }

  /* used in image indexes */
  .thumb-tile-square-small {
    /* Box Model */
    height: 7.375vw;
    width: 7.375vw;
  }

  /* used in image lists select_to, select_from */
  .thumb-tile-small {
    /* Positioning and Layout */
    position: relative;
    display: block;

    /* Box Model */
    width: 16.75vw;
    height: 11.17vw;
    /* height: 4.245vw; */
    /*background-color: #FFF;*/
  }

  .logo-tile-square {
    /* Box Model */
    width: 16.75vw;
    height: 16.75vw;
  }

  .form-imagelist-title {
    font-size: 2em;
  }

  .form-edit-hero {
    /* Box Model */
    width: 35.5vw;
  }

  .form-image {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 35.5vw;
  }

  .form-thumb {
    /* Positioning and Layout */
    position: relative;
    display: block;

    /* Box Model */
    width: 16.75vw;
    height: 11.17vw;

    background-color: #fff;
  }
}

@media (max-width: 500px) {
  /* IMAGE STYLES */
  .thumb-tile-square {
    /* Box Model */
    width: 48vw;
    height: 48vw;
  }
  /* used in image indexes */
  .thumb-tile-square-small {
    /* Box Model */
    height: 23vw;
    width: 23vw;
  }
  /* used in image indexes */
  /* used in image lists select_to, select_from */
  .thumb-tile-small {
    /* Box Model */
    width: 48vw;
    height: 31.92vw;
    /*background-color: #FFF;*/
  }

  .logo-tile-square {
    /* Box Model */
    width: 48vw;
    height: 48vw;
  }

  .form-image {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 98vw;
  }

  .form-edit-hero {
    /* Box Model */
    width: 98vw;
  }

  .form-thumb {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 48vw;
    height: 32vw;
  }
}
/* INDEX STYLES */
.admin-index-wrapper {
  /* Positioning and Layout */
  flex: 0 0 15vw;

  /* Box Model */
  margin: 49px 1vw 0 2vw;
}

.admin-index-section {
  /* Box Model */
  margin: 0 0 1em 0;
}

.admin-index-section a {
  /* Typography */
  text-decoration: none;
}

.admin-index-title {
  /* Box Model */
  padding-bottom: 6px;
  border-bottom: 1px solid #aaa;

  /* Typography */
  font-weight: bold;
  color: #555;
}

ul.admin-menu li {
  /* Box Model */
  border-bottom: 1px solid;

  /* Typography */
  font-size: 1em;
  line-height: 25px;
  list-style: none;
}

ul.admin-menu li a {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  padding-left: 10px;

  /* Typography */
  font-weight: 400;
  text-decoration: none;
  color: #aaa;
}

ul.admin-menu li a:hover {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  padding-left: 10px;

  /* Typography */
  text-decoration: none;
  color: #222;

  /* Visual Appearance */
  background-color: #999;
}

.admin-logout {
  /* Box Model */
  margin: 25px 0 0 0;

  /* Typography */
  /*text-align: center;*/
}

.admin-index-red-button {
  /* Positioning and Layout */
  display: flex;
  align-items: center; /* Vertically center the text */
  justify-content: flex-start; /* Align text to the left */

  /* Box Model */
  width: 100%;
  height: 27px;
  padding: 0 0 0 10px;
  border: 0;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  box-sizing: border-box;

  /* Typography */
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  text-decoration: none;
  color: red;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.admin-index-red-button:hover {
  /* Box Model */
  border: 1px solid red;

  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: red;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* INDEX STYLES */
  .admin-index-wrapper {
    /* Positioning and Layout */
    flex: 0 0 23vw;

    /* Box Model */
    margin: 50px 1vw 0 1vw;
  }
}

@media (max-width: 500px) {
  /* INDEX STYLES */
  .admin-index-wrapper {
    /* Positioning and Layout */
    display: none;
  }

  .admin-index-section {
    /* Positioning and Layout */
    display: flex;
    flex-direction: row;

    /* Box Model */
    margin: 0 0 0 0;
  }

  .admin-index-title {
  }

  .admin-index-entry {
    /* Box Model */
    width: 31vw;
    margin: 1vw;
    padding: 8px;
    box-sizing: border-box;
  }

  .admin-index-spacer {
    /* Positioning and Layout */
    flex: 1 0 auto;
  }

  .admin-index-section {
    /* Box Model */
    width: 98vw;
    box-sizing: border-box;
  }

  .admin-index-title {
    /* Box Model */
    width: 49vw;
    padding: 8px 0 0 0;
    border-bottom: 1px solid #000;
    box-sizing: border-box;

    /* Typography */
    color: #000;
  }

  .admin-menu li {
    /* Box Model */
    width: 49vw;
    box-sizing: border-box;

    /* Typography */
    text-align: left;
    color: #000;
  }

  ul.admin-menu li {
  }

  ul.admin-menu li a {
    /* Typography */
    color: #000;
  }

  ul.admin-menu li a:hover {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    padding-left: 10px;

    /* Typography */
    text-decoration: none;
    color: #000;

    /* Visual Appearance */
    background-color: #fff;
  }

  .admin-logout {
    /* Box Model */
    margin: 25px 0 0 0;
  }

  .admin-index-red-button {
    /* Positioning and Layout */
    display: block;

    /* Box Model */
    width: 98vw;
    padding: 4px 0 4px 0px;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
    box-sizing: border-box;

    /* Typography */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: red;

    /* Miscellaneous */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }

  .admin-index-red-button:hover {
    /* Box Model */
    border: 1px solid red;

    /* Typography */
    color: white;

    /* Visual Appearance */
    background-color: red;
  }
}
/* ADMIN HEADER STYLES */
.login-header {
  /* Box Model */
  height: 100px;
  box-sizing: border-box;

  /* Typography */
  text-align: center;
}

#adminheader {
  /* Positioning and Layout */
  display: none;
}

/* ADMIN PAGE STYLES */
.admin-content-wrapper {
  /* Positioning and Layout */
  display: flex;

  /* Box Model */
  width: 100vw;
  min-height: 100vh;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 12px;
  line-height: 25px;
  color: #aaa;

  /* Visual Appearance */
  background-color: #222;
}

/* DETAIL COLUMN STYLES */
.admin-details-container {
  /* Box Model */
  /*height: 50px;*/
  margin: 15px 2vw 15px 1vw;
  padding: 24px 8px 8px 8px;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* HEADER STYLES */
  .admin-content-wrapper {
    /* Positioning and Layout */
    display: flex;
    flex-direction: row;
  }

  /* ADMIN PAGE STYLES */

  /* DETAIL COLUMN STYLES */
  .admin-details-container {
    /* Box Model */
    margin: 0 0 0 0;
    padding: 0;
  }
}

@media (max-width: 500px) {
  /* HEADER STYLES */
  #adminheader {
    /* Positioning and Layout */
    display: block;

    /* Typography */
    font-family: "Open Sans", helvetica, arial, sans;
  }

  .admin-header {
    /* Positioning and Layout */
    position: fixed;
    z-index: 20;

    /* Box Model */
    width: 100vw;
    height: 73px;
    border-bottom: 1px dotted black;
    box-sizing: border-box;

    /* Typography */
    color: #000;

    /* Visual Appearance */
    background-color: rgba(255, 255, 255, 1);
  }

  #menulinks {
    /* Positioning and Layout */
    position: absolute;
    left: 100vw;

    /* Miscellaneous */
    transition: all 0.5s ease-in-out;
  }

  /* ADMIN PAGE STYLES */
  .admin-content-wrapper {
    /* Positioning and Layout */
    display: flex;
    flex-direction: column;
  }
}
/* LOGIN */
.login-header-content {
  /* Box Model */
  box-sizing: border-box;
  height: 100px;
  /*padding: 10px;*/

  /* Typography */
  /*font-family: 'Open Sans', helvetica, arial, sans;*/
  font-size: 50px;
  line-height: 100px;
  text-align: center;

  /* Visual Appearance */
  background-color: rgba(255, 255, 255, 1);
}

.login-header-icon {
  /* Box Model */
  height: 90px;
}

.login-centered {
  /* Positioning and Layout */
  position: absolute;
  top: 400px;
  left: 50%;

  /* Miscellaneous */
  transform: translate(-50%, -50%);
}

.login-form {
  /* Box Model */
  margin: 0 0 1em 0;
}

.login-title {
  /* Box Model */
  margin: 0 0 1em 0;
}

.login-field {
  /* Box Model */
  width: 400px;
  margin: 1em 1vw 1.75em 0;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 0;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  color: #aaa;

  /* Visual Appearance */
  background-color: #111;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.login-button input[type="submit"] {
  /* Box Model */
  /*height: 2em;*/
  margin: 1em 0 0 0;
  padding: 4px 8px;
  border: 1px solid lime;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  /*font-family: 'Times New Roman', Times, serif;*/
  font-size: 1em;
  color: lime;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.login-button input[type="submit"]:hover {
  /* Box Model */
  border: 1px solid lime;

  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: lime;
}

.login-shared-links a {
  /* Typography */
  /*text-decoration: none;*/
  color: #aaa;
}

.notice-success {
  /* Box Model */
  margin-bottom: 1em;

  /* Typography */
  color: lime;
}

.button-list {
  /* Box Model */
  margin: 0.5em 0 0.5em 0;

  /* Miscellaneous */
  overflow: hidden;
}

.button-list-button {
  /* Positioning and Layout */
  float: left;

  /* Box Model */
  margin: 0 0.5em 0 0;
}

.admin-form-button {
  /* Box Model */
  height: 27px;
  padding: 0 16px 0 16px;
  box-sizing: border-box;

  /* Typography */
  text-decoration: none;

  /* Visual Appearance */
  background-color: transparent;

  /* Miscellaneous */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

a.admin-form-button {
  /* Positioning and Layout */
  display: inline-block;

  /* Box Model */
  /*height: 2em;*/
  padding: 0px 16px 0px 16px;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Typography */
  /*font-size: 1em;*/
  text-align: center;
}

.admin-green-button {
  /* Positioning and Layout */
  display: block;

  /* Box Model */
  height: 27px;
  padding: 4px 16px 4px 16px;
  border: 1px solid lime;

  /* Typography */
  font-family: "Open Sans", "helvetica", "arial", sans-serif;
  font-size: 1em;
  text-align: center;
  color: lime;

  /* Visual Appearance */
  background-color: transparent;
}

.admin-green-button:hover {
  /* Box Model */
  border: 1px solid lime;

  /* Typography */
  color: #222;

  /* Visual Appearance */
  background-color: lime;
}

/* GLOBAL STYLES */
.user-content-wrapper {
  /* Positioning and Layout */
  display: flex;
  min-height: 100vh;

  /* Typography */
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 1em;
  line-height: 25px;
  color: #000;

  /* Visual Appearance */
  background-color: #fff;
}

.user-checkbox {
  /* Positioning and Layout */
  display: table-cell;
  vertical-align: middle;

  /* Typography */
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Visual Appearance */
  background-color: #aaa;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.user-checkbox:checked {
  /* Positioning and Layout */
  border: 1px solid #aaa;
  box-sizing: border-box;

  /* Visual Appearance */
  background-color: #111;

  /* Miscellaneous */
  -webkit-appearance: none;
}

.user-checkbox-title {
  /* Positioning and Layout */
  vertical-align: middle;
  display: table-cell;

  /* Box Model */
  height: 16px;
  padding-left: 8px;

  /* Typography */
  line-height: 8px;
}

.remember-cb-wrapper {
  /* Positioning and Layout */
  display: table;

  /* Box Model */
  height: 16px;
  box-sizing: border-box;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
}

@media (max-width: 500px) {
  /* LOGIN STYLES */
  .login-centered {
    /* Positioning and Layout */
    position: absolute;
    top: 50%;
    left: 50%;

    /* Miscellaneous */
    transform: translate(-50%, -50%);
  }

  .login-field {
    /* Box Model */
    width: 80vw;
    margin: 1em 0 1.75em 0;
    padding: 8px;
    border: 1px solid #aaa;
    border-radius: 0;

    /* Typography */
    font-family: "Open Sans", helvetica, arial, sans;
    font-size: 1em;
    color: #aaa;

    /* Visual Appearance */
    background-color: #111;

    /* Miscellaneous */
    -webkit-appearance: none;
  }
}
.admin_pagination {
  /*background: white;*/
  cursor: default;
  /* self-clearing method: */
  margin: 25px 0 25px 0;
}
.admin_pagination a,
.admin_pagination span,
.admin_pagination em {
  /*padding: 0.2em 0.5em;*/
  display: block;
  float: left;
  margin-right: 1px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.admin_pagination .disabled {
  display: none;
}
.admin_pagination .current {
  font-style: normal;
  font-weight: bold;
  background: #aaa;
  color: #222;
  border: 1px solid #aaa;
}
.admin_pagination a {
  text-decoration: none;
  color: #aaa;
  border: 1px solid #aaa;
}
.admin_pagination a:hover,
.admin_pagination a:focus {
  color: #222;
  background: #aaa;
  border-color: #aaa;
}
.admin_pagination .page_info {
  background: #2e6ab1;
  color: white;
  /*padding: 0.4em 0.6em;*/
  width: 22em;
  margin-bottom: 0.3em;
  text-align: center;
}
.admin_pagination .page_info b {
  color: #000033;
  background: #6aa6ed;
  padding: 0.1em 0.25em;
}
.admin_pagination:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
* html .admin_pagination {
  height: 1%;
}
*:first-child + html .admin_pagination {
  overflow: hidden;
}
/* ADMIN SIDEMENU STYLES */

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* ADMIN SIDEMENU STYLES */

  .admin-side-menu-wrapper .admin-index-title {
    color: black;
  }

  .admin-side-menu-wrapper .admin-menu {
    color: black;
  }
}

@media (max-width: 500px) {
  /* ADMIN SIDEMENU STYLES */
  .admin-side-menu-wrapper {
    /* Positioning and Layout */
    position: absolute;

    /* Box Model */
    width: 100vw;
    height: 100vh;
    padding: 73px 1vw 100px 1vw;

    /* Miscellaneous */
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .admin-side-menu-wrapper a {
    /* Typography */
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  #admin-side-menu-toggle {
    /* Positioning and Layout */
    display: block;
    float: right;
    position: relative;
    z-index: 30;

    /* Typography */
    font-size: 3em;

    /* Miscellaneous */
    cursor: pointer;
  }

  #admin-side-menu-toggle a {
    /* Positioning and Layout */
    position: relative;
    z-index: 100;

    /* Box Model */
    padding: 12px;

    /* Typography */
    font-size: 1em;

    /* Miscellaneous */
    cursor: pointer;
  }
}
div.ql-editor {
  font-size: 28px;
  color: black;
  background-color: white;
  padding: 2px 8px;
}

div.ql-editor p {
  /* margin-bottom: 0.75em; */
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 10.5px;
}
.editor-text {
  font-family: "Open Sans", helvetica, arial, sans;
  font-size: 14px;
  line-height: 21px;
  /* margin-bottom: 10.5px; */
  height: 400px !important;
  border: 1px solid white;
  box-sizing: border-box;
}
.trix-button--image-url {
  background: none;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  padding: 0 10px;
}
.trix-button--image-url:hover {
  color: #007bff;
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: "\2022";
}
.ql-editor ul[data-checked="true"],
.ql-editor ul[data-checked="false"] {
  pointer-events: none;
}
.ql-editor ul[data-checked="true"] > li *,
.ql-editor ul[data-checked="false"] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked="true"] > li::before,
.ql-editor ul[data-checked="false"] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked="true"] > li::before {
  content: "\2611";
}
.ql-editor ul[data-checked="false"] > li::before {
  content: "\2610";
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) ". ";
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) ". ";
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) ". ";
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) ". ";
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) ". ";
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) ". ";
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) ". ";
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) ". ";
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type="file"],
.ql-snow .ql-toolbar input.ql-image[type="file"] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow
  .ql-picker.ql-header
  .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-font
  .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-size
  .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-header
  .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-font
  .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-size
  .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
  content: "Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
  content: "Monospace";
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
  content: "Small";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
  content: "Large";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
  content: "Huge";
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type="text"] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type="text"] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: "Save";
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode="link"]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode="formula"]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode="video"]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}
/* GLOBAL STYLES */
.post-navigation-section {
  /*	display: flex;
	flex-direction: row;
	width: 100vw;*/
}
.post-navigation-column {
  min-width: 500px;

  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2em;
  margin-bottom: 2em;
  margin-left: 24.375vw;

}
.post-navigation {
  display: flex;
  flex-direction: row;
  /*width: 500px;*/
}
.post-navigation h1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}
.post-scope {
  flex: 0 0 75%;

  color: rgba(0, 0, 0, 0.1);
}
.post-index {
  flex: 25%;

  text-align: right;
}
.post-navigation-aside {
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.post-section {
  /*	display: flex;
	flex-direction: row;
	width: 100vw;*/
}

.postdate-section {
  text-align: right;
  /*padding-right: 1em;*/
}

.postentry-section {
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.blogentry-title {
  width: 500px;
}

.blogentry-title h1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}

.blogentry-content {
  box-sizing: border-box;
  border: 0;
  width: 516px;
}

.blogentry-content h1 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.75em;
}

.blogentry-content p {
  margin-bottom: 0.75em;
  font-size: 14px;
}

.blogentry-content img {
  margin-bottom: 1em;
}

.postkeyword-section {
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.blogentry-title {
}

.keywordlist-container {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
}

.keywordlist-box {
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: lowercase;
  white-space: nowrap;
  border-radius: 11px;
  -moz-border-radius: 11px;
  -o-border-radius: 11px;
  -webkit-border-radius: 11px;
  border: 1px solid #999;
  box-sizing: border-box;
  color: #999;
  display: inline-block;
  font-size: 11px;
  /*font-weight: lighter;*/
  height: 22px;
  margin: 0 2px 5px 0;
  padding: 4px 8px 4px 8px;
  text-align: center;
}

.keywordlist-container a:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}

.date {
  color: #999;
  font-size: 11px;
}

/* MEDIA QUERIES */
@media (max-width: 700px) {
  .post-navigation-column {
    flex: none;
    padding-bottom: 0;

  }
  .post-navigation {
    width: 98vw;
  }
  .postentry-section {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1em;
  }
  .post-navigation-aside {
    display: none;
  }
}

@media (max-width: 500px) {
  .post-navigation-column {
  }
  .post-navigation-aside {
    display: none;
  }
  .postentry-section {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1em;
  }
  .blogentry-content {
    width: 98vw;
  }
  .blogentry-content img {
    width: 98vw;
    height: 98vw;
  }

  .blogentry-content iframe {
    width: 98vw; /* Set width to 98% of the viewport width */
    height: calc(98vw * 9 / 16); /* Maintain a 16:9 aspect ratio */
    max-width: 100%; /* Ensure it doesn't overflow */
    border: none; /* Remove the border */
  }
  /* .keywordlist-box {
    border-radius: 11px;
    -moz-border-radius: 11px;
    -o-border-radius: 11px;
    -webkit-border-radius: 11px;
    font-size: 11px;
    height: 22px;
    margin: 0 2px 5px 0;
    padding: 4px 8px 4px 8px;
    text-align: center;
  } */
  .keywordlist-box {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-border-radius: 15px;
    font-size: 15px;
    height: 30px;
    margin: 0 2px 7px 0;
    padding: 6px 10px 6px 10px;
    text-align: center;
  }

  .blogentry-title {
    width: 98vw;
  }

  .postdate-section {
    display: none;
  }
}
/* COLUMN STYLES */
.col-three {
    display: flex;
}
.col {
    box-sizing: border-box;
    margin-left: 0.5vw;
    /*padding: 2em;*/
}
.col-three .col ~ .col {
}
.col-three .col-date {
    flex: 0 1 24.375vw;
}
.col-three .col-content {
    flex: 1 1 49.25vw;
}
.col-three .col-keyword {
    flex: 0 1 24.375vw;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
    .col-three .col-date {
        flex: 0 1 14.375vw;
    }
    .col-three .col-content {
        flex: 1 1 49.25vw;
    }
    .col-three .col-keyword {
        flex: none;
    }
}


@media (max-width: 700px) {
    .col-three {
        flex-direction: column;
    }
    .col-three .col-content {
        flex: none;
    }

    .postdate-section {
        display: none;
    }
}


@media (max-width: 500px) {
    .col-three {
        flex-direction: column;
    }
    .col-three .col-content {
        flex: none;
    }

    .postdate-section {
        display: none;
    }
}
.field_with_errors {
  padding: 4px 2px;
  background-color: red;
  display: table;
}
.creditcard_error {
  color: red;
  font-size: 16px;
  list-style: square;
}
 
#error_explanation {
  /*width: 450px;*/
  border: 2px solid red;
  padding: 7px;
  padding-bottom: 0;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}
#error_explanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 8px 8px 8px 15px;
  font-size: 1em;
  margin: -7px;
  margin-bottom: 0px;
  background-color: red;
  color: #FFF;
}
#error_explanation p {
  margin: 18px;
}
#error_explanation ul {
  margin: 18px;
}
#error_explanation ul li {
  font-size: 16px;
  list-style: square;
}
.blog_pagination {
  background: white;
  cursor: default;
  /* self-clearing method: */ 
}
  .blog_pagination a, .blog_pagination span, .blog_pagination em {
    padding: 0.2em 0.5em;
    display: block;
    float: left;
    margin-right: 1px; 
  }
  .blog_pagination .disabled {
    display: none; 
  }
  .blog_pagination .current {
    font-style: normal;
    font-weight: bold;
    background: #000;
    color: white;
    border: 1px solid #000; 
  }
  .blog_pagination a {
    text-decoration: none;
    color: #000;
    border: 1px solid #000; 
  }
    .blog_pagination a:hover, .blog_pagination a:focus {
      background: #000;
      color: white;
      border: 1px solid #000; 
    }
  .blog_pagination .page_info {
    background: #2e6ab1;
    color: white;
    padding: 0.4em 0.6em;
    width: 22em;
    margin-bottom: 0.3em;
    text-align: center; 
  }
    .blog_pagination .page_info b {
      color: #000033;
      background: #6aa6ed;
      padding: 0.1em 0.25em; 
    }
  .blog_pagination:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; 
  }
  * html .blog_pagination {
    height: 1%; 
  }
  *:first-child + html .blog_pagination {
    overflow: hidden; 
  }

.apple_pagination {
  /*background: #f1f1f1;*/
  /*border: 1px solid #e5e5e5;*/
  text-align: center;
  /*padding: 1em;*/
  cursor: default; }
  .apple_pagination a, .apple_pagination span {
    padding: 0.2em 0.3em; }
  .apple_pagination .disabled {
    display: none; }
  .apple_pagination .current {
    font-style: normal;
    font-weight: bold;
    background-color: #000;
    color: #FFF;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.5;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;
    /*text-shadow: rgba(255, 255, 255, 0.8) 1px 1px 1px;*/ }
  .apple_pagination a {
    text-decoration: none;
    color: black; }
    .apple_pagination a:hover, .apple_pagination a:focus {
      text-decoration: underline; }

.flickr_pagination {
  text-align: center;
  padding: 0.3em;
  cursor: default; }
  .flickr_pagination a, .flickr_pagination span, .flickr_pagination em {
    padding: 0.2em 0.5em; }
  .flickr_pagination .disabled {
    color: #aaaaaa; }
  .flickr_pagination .current {
    font-style: normal;
    font-weight: bold;
    color: #ff0084; }
  .flickr_pagination a {
    border: 1px solid #dddddd;
    color: #0063dc;
    text-decoration: none; }
    .flickr_pagination a:hover, .flickr_pagination a:focus {
      border-color: #003366;
      background: #0063dc;
      color: white; }
  .flickr_pagination .page_info {
    color: #aaaaaa;
    padding-top: 0.8em; }
  .flickr_pagination .previous_page, .flickr_pagination .next_page {
    border-width: 2px; }
  .flickr_pagination .previous_page {
    margin-right: 1em; }
  .flickr_pagination .next_page {
    margin-left: 1em; }
/* GLOBAL STYLES */
html {
  padding: 0;
}

body {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", helvetica, arial, sans;
  margin: 0;
  min-height: 100vh;
  padding: 0;
}

h1 {
  font-family: "Lucida Grande", verdana, helvetica, sans-serif;
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

h2 {
  font-family: helvetica, arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  /*text-transform: uppercase;*/
}

h3 {
  font-size: 0.5em;
  font-weight: bold;
  line-height: 1.3em;
  text-transform: uppercase;
}

a {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
}

p {
  font-family: "Lucida Grande", verdana, helvetica, sans-serif;
  font-size: 0.5em;
  line-height: 1.5em;
}

.content-wrapper {
  padding-top: 92px;
  /*padding-top: 112px;*/
  width: 100vw;
}

#content-wrapper {
  position: absolute;
  right: 0;
  transition: all 0.5s ease-in-out;
}

.layout-section {
  box-sizing: border-box;
  margin: 0 0 0 0.5vw;
  width: 24.375vw;
}

#single_article_wrapper {
  margin: 0 0.5vw 0 0.5vw;
}

#single_article_footer {
  box-sizing: border-box;
  padding: 2em 0.5vw 0 0.5vw;
  text-align: center;
  width: 100vw;
}

/* HEADER STYLES */
#floatingmarvel {
  background-color: white;
  border-bottom: 1px dotted black;
  height: 428px;
  overflow: hidden;
  padding: 0px;
  position: fixed;
  top: -344px;
  transition: all 0.5s ease-in-out;
  width: 100%;
  z-index: 20;
}

#floatingmarvel_shadow {
  background-color: black;
  height: 4px;
  opacity: 0.1;
  padding: 0px;
  position: fixed;
  top: 84px;
  transition: all 0.5s ease-in-out;
  width: 100%;
  z-index: 19;
}

#mobilefloatingmarvel {
  display: none;
}

#mobilefloatingmarvel_shadow {
  display: none;
}

#btn-open {
  display: block;
}

#btn-close {
  display: none;
}

.switch {
  padding-right: 10px;
  position: absolute;
  right: 0.5vw;
  top: 50%;
  transform: translate(0, -50%);
}

.header {
  height: 428px;
  width: 100vw;
}

.header-row {
  box-sizing: border-box;
  color: #000;
  display: flex;
  flex-direction: row;
  /*height: 100px;*/
}

.header a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.header-row h3 {
  margin: 1em 0 1em;
}

.header-row p {
  margin: 1em 0 1em;
}

.h-description-row {
  height: 217px;
}

.h-address-row {
  height: 120px;
}

.h-logo-row {
  height: 91px;
  padding: 8px 0 6px 0;
}

.headerlogo-row {
  bottom: 0;
}

.header-description {
  border-bottom: 1px dotted #aaa;
  text-align: left;
  vertical-align: top;
}

.header-navigation {
  flex: 1;
  position: relative;
  text-align: right;
}

.header-navigation-menu {
  padding-right: 10px;
  position: absolute;
  right: 0.5vw;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: row;
}
.header-navigation-option {
  padding: 0 0 0 1em;
}
.logo {
  height: 72px;
  float: left;
  clear: both;
  padding: 6px 10px 6px 0px;
}

/* PORTFOLIO STYLES */
.entry {
  float: left;
}

#profile {
  float: left;
}

.entry-border {
  border-top: 1px solid #000;
  box-sizing: border-box;
}

.entry-wrapper {
  display: flex;
  flex-direction: column;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  /*padding: 10px 0 10px 0;*/
  /*margin: 2px 0 2px 0;*/
}

.entry-container-show {
  display: flex;
  flex-direction: row;
}

.entry-container {
  display: flex;
  flex-direction: row;
  height: 7vw;
}

.entry-container h2 {
  -webkit-margin-before: 10px;
  -webkit-margin-after: 10px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

.entry-container h3 {
  -webkit-margin-before: 10px;
  -webkit-margin-after: 10px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

.entry-container p {
  -webkit-margin-before: 10px;
  -webkit-margin-after: 10px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

.entry-index-wrapper {
  flex: 1 0 18.75%;
  height: 6vw;
}

.entry-image-wrapper {
  flex: 1 0 31.25%;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: left;
  padding: 1.21vw 6.25% 0 0;
}

.entry-abstract-wrapper {
  flex: 1 0 50%;
}

.entry-content-wrapper {
  flex: 1 0 81.25%;
}

.entry-navigation {
  /*position: absolute;*/
  display: block;
  height: 100px;
  width: 100%;
}

.entry-thumb-tile {
  position: relative;
  display: block;
  height: 4.47vw;
  width: 100%;
}

.entry-image-tile {
  position: relative;
  display: block;
  height: 18.28vw;
  width: 100%;
}

.entry-image-hero {
  position: relative;
  display: block;
  height: 73.5vw;
}

/* FOOTER STYLES */
.footer {
  box-sizing: border-box;
  clear: both;
  display: block;
  float: none;
  padding: 25px 0.5vw 0.5vw 0.5vw;
  width: 100vw;
}

@media (max-width: 1550px) {
  /* GLOBAL STYLES */
  .layout-section {
    box-sizing: border-box;
    margin: 0 0 0 1vw;
    width: 32vw;
  }

  /* PORTFOLIO STYLES */
  .entry-container {
    height: 9.2vw;
  }

  .entry-index-wrapper {
    height: 8.2vw;
  }

  .entry-image-wrapper {
    padding: 1.6vw 6.25% 0 0;
  }

  .entry-thumb-tile {
    height: 6vw;
  }

  .entry-image-tile {
    height: 24vw;
  }
}

@media (max-width: 1300px) {
  /* HEADER STYLES */
  .h-description-row {
    height: 250px;
  }

  .h-address-row {
    height: 87px;
  }

  .header-mobile-logo {
    margin-left: 1vw;
  }

  /* PORTFOLIO STYLES */
  .entry-container {
    height: 10.5vw;
  }

  .entry-image-wrapper {
    padding: 2.25vw 6.25% 0 0;
  }
}

@media (max-width: 1000px) {
  /* GLOBAL STYLES */
  .layout-section {
    box-sizing: border-box;
    margin: 0 0 0 1vw;
    width: 48.5vw;
  }

  /* HEADER STYLES */
  .h-description-row {
    height: 247px;
  }

  .h-address-row {
    height: 90px;
  }

  .header-mobile-logo {
    margin-left: 1vw;
  }

  /* PORTFOLIO STYLES */
  .entry-container {
    height: 14vw;
  }

  .entry-index-wrapper {
    height: 12.5vw;
  }

  .entry-image-wrapper {
    padding: 2.43vw 6.25% 0 0;
  }

  .entry-thumb-tile {
    height: 9.1vw;
  }

  .entry-image-tile {
    height: 36.375vw;
  }
}

@media (max-width: 700px) {
  /* HEADER STYLES */
  .h-description-row {
    height: 247px;
  }

  .h-address-row {
    height: 90px;
  }

  /* PORTFOLIO STYLES */
  .entry-container {
    height: 22vw;
  }

  .entry-index-wrapper {
    height: 25.3vw;
  }

  .entry-image-wrapper {
    padding: 6.45vw 6.25% 0 0;
  }

  .entry-thumb-tile {
    height: 9.1vw;
  }

  .entry-image-tile {
    height: 36.375vw;
  }
}

@media (max-width: 600px) {
  /* HEADER STYLES */
  .h-description-row {
    height: 247px;
  }

  .h-address-row {
    height: 90px;
  }

  /* PORTFOLIO STYLES */
  .entry-container {
    height: 30vw;
  }

  .entry-index-wrapper {
    height: 25.3vw;
  }

  .entry-image-wrapper {
    padding: 10.45vw 6.25% 0 0;
  }

  .entry-thumb-tile {
    height: 9.1vw;
  }

  .entry-image-tile {
    height: 36.375vw;
  }
}

@media (max-width: 500px) {
  /* GLOBAL STYLES */
  .content-wrapper {
    padding-top: 58px;
  }

  .layout-section {
    box-sizing: border-box;
    margin: 0 0 0 1vw;
    width: 98vw;
  }

  /* HEADER STYLES */
  #floatingmarvel {
    display: none;
  }

  #floatingmarvel_shadow {
    display: none;
  }

  #mobilefloatingmarvel {
    display: block;
    background-color: white;
    border-bottom: 1px dotted black;
    height: 428px;
    overflow: hidden;
    padding: 0px;
    position: fixed;
    top: -378px;
    transition: all 0.5s ease-in-out;
    width: 100%;
    z-index: 20;
  }

  #mobilefloatingmarvel_shadow {
    display: block;
    background-color: black;
    height: 4px;
    opacity: 0.1;
    padding: 0px;
    position: fixed;
    top: 50px;
    transition: all 0.5s ease-in-out;
    width: 100%;
    z-index: 19;
  }

  #btn-open-mobile {
    display: block;
  }

  #btn-close-mobile {
    display: none;
  }

  .h-logo-row {
    height: 50px;
    padding: 3px 0 3px 0;
  }

  .h-description-row {
    height: 217px;
  }

  .h-address-row {
    height: 161px;
  }

  .logo {
    height: 44px;
    float: left;
    clear: both;
    padding: 0;
  }

  /* PORTFOLIO STYLES */
  .entry-container {
    height: 28.175vw;
  }

  .entry-index-wrapper {
    height: 25.3vw;
  }

  .entry-image-wrapper {
    padding: 4.9vw 6.25% 0 0;
  }

  .entry-thumb-tile {
    height: 18.375vw;
  }

  .entry-image-tile {
    height: 73.5vw;
  }
}

@media (max-width: 370px) {
  /* GLOBAL STYLES */
  .layout-section {
    box-sizing: border-box;
    margin: 0 0 0 1vw;
    width: 98vw;
  }

  /* HEADER STYLES */
  .h-description-row {
    height: 260px;
  }

  .h-address-row {
    height: 118px;
  }

  /* PORTFOLIO STYLES */
  .entry-container {
    height: 39vw;
  }

  .entry-image-wrapper {
    padding: 10.3vw 6.25% 0 0;
  }
}
/* RESPONSIVE RESOURCES */
.desktop {
  display: block;
}
.pad {
  display: none;
}
.mobile {
  display: none;
}



/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* RESPONSIVE RESOURCES */
  .desktop {
    display: none;
  }
  .pad {
    display: block;
  }
}



@media (max-width: 500px) {
  /* RESPONSIVE RESOURCES */
  .pad {
    display: none;
  }
  .mobile {
    display: block;
  }
}
/* HEADER STYLES */

/* SIDE MENU TOGGLE */
#side-menu-toggle {
  display: none;
}

/* MENU NAVIGATION STYLES */
#side-menu-links {
  display: none;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  /* SIDE MENU TOGGLE */
  .header #side-menu-toggle {
    display: block;
    float: right;
    position: relative;
    color: rgg(0, 0, 0, 1);
    cursor: pointer;
    font-size: 3em;
    z-index: 30;
  }
  #side-menu-toggle a {
    padding: 0.25em 0.25em 0.25em 0.25em;
  }
  /* JS switches display mode */
  #side-menu-open {
    display: block;
  }
  #side-menu-open:hover {
    background-color: lime;
  }
  /* JS switches display mode */
  #side-menu-close {
    display: none;
  }
  #side-menu-close:hover {
    background-color: white;
  }

  /* MENU NAVIGATION STYLES */
  #menu-links {
    display: none;
  }
  .admin-header #side-menu-links {
    display: block;
    position: absolute;
    box-sizing: border-box;
    height: 100vh;
    width: 100vw;
    z-index: 19;
    background-color: lime;
    color: black;
    transition: all 0.5s ease-in-out;
  }
  #side-menu-links {
    right: -100vw;
  }
  .side-nav-links a {
    cursor: pointer;
    padding: 0.5em;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
  }
  .side-nav-links a:hover {
    background-color: white;
  }

  /* SIDE MENU LIST STYLES */
  .side-nav-links {
    margin: 100px 75px auto auto;
    text-align: right;
    width: 300px;
  }
  .side-nav-links li {
    border-top: 1px dotted black;
    display: block;
    padding: 1em 0 1em 0;
  }
  .side-nav-links li:last-child {
    border-bottom: 1px dotted black;
    margin-bottom: 1em;
  }
}

@media (max-width: 500px) {
  .side-nav-links {
    margin: 100px 10vw auto auto;
    width: 80vw;
  }
}
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
  /* custom */
  background-color: white;
}

trix-editor div {
  color: black;
}

trix-toolbar * {
  box-sizing: border-box;
}

trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

trix-toolbar .trix-button-row button {
  /* custom */
  color: #aaa;
  background-color: #aaa;
}

trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}

trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}

trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}
@media (max-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}

trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}

trix-toolbar .trix-button--icon-attach::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  top: 8%;
  bottom: 4%;
}

trix-toolbar .trix-button--icon-bold::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-italic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-strike::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-code::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-number-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-undo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-redo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

trix-toolbar .trix-dialogs {
  position: relative;
}

trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}

trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #f00 0px 0px 1.5px 1px;
}

trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}

trix-toolbar .trix-dialog--link {
  max-width: 600px;
}

trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection,
trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}

trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection,
trix-editor [data-trix-mutable] ::selection {
  background: none;
}

trix-editor
  .attachment__caption-editor:focus[data-trix-mutable]::-moz-selection {
  background: highlight;
}

trix-editor .attachment__caption-editor:focus[data-trix-mutable]::selection {
  background: highlight;
}

trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}

trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight;
}

trix-editor .attachment {
  position: relative;
}
trix-editor .attachment:hover {
  cursor: default;
}

trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}

trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}

trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}

trix-editor .trix-button-group {
  display: inline-flex;
}

trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}

trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}
trix-editor .trix-button--remove:hover {
  border-color: #333;
}
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}

trix-editor .attachment__metadata-container {
  position: relative;
}

trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

.trix-content {
  line-height: 1.5;
}
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}
.trix-content [dir="rtl"] blockquote,
.trix-content blockquote[dir="rtl"] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}
.trix-content li {
  margin-left: 1em;
}
.trix-content [dir="rtl"] li {
  margin-right: 1em;
}
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}
.trix-content img {
  max-width: 100%;
  height: auto;
}
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}
.trix-content .attachment a:hover,
.trix-content .attachment a:visited:hover {
  color: inherit;
}
.trix-content .attachment__caption {
  text-align: center;
}
.trix-content
  .attachment__caption
  .attachment__name
  + .attachment__size::before {
  content: " \2022 ";
}
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}
.trix-content .attachment-gallery.attachment-gallery--2 .attachment,
.trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}
/* GLOBAL STYLES */
.user-content-wrapper {
  color: #000;
  background-color: #FFF;
  font-family: 'Open Sans', helvetica, arial, sans;
  line-height: 25px;
  font-size: 12px;
  display: flex;
  min-height: 100vh;
}

.user-checkbox {
  -webkit-appearance: none;
  box-sizing: border-box;
  background-color: #AAA;
  border: 1px solid #AAA;
  margin: 0;
  display: table-cell;
  vertical-align: middle;
  height: 16px;
  width: 16px;
}

.user-checkbox:checked {
  -webkit-appearance: none;
  box-sizing: border-box;
  background-color: #111;
  border: 1px solid #AAA;
}

.user-checkbox-title {
  padding-left: 8px;
  line-height: 8px;
  display: table-cell;
  height: 16px;
  vertical-align: middle;
}

.remember-cb-wrapper {
  display: table;
  box-sizing: border-box;
  height: 16px;
}
#wysihtml5-toolbar {
  border-top: 1px solid #aaa;
  padding-top: 10px;
  margin-bottom: 10px;
}

#wysihtml5-toolbar a {
  border: 1px solid #aaa;
  box-sizing: border-box;
  color: #aaa;
  display: inline-block;
  font-size: 11px;
  font-weight: lighter;
  height: 27px;
  margin-right: 1px;
  padding: 0 8px 0 8px;
  text-align: center;
}

.wysihtml5-sandbox {
  border-width: 0;
  box-sizing: border-box;
  padding: 0 8px 0 8px;
  margin: 0;
  width: 516px;
}
