/* Common CSS for CustomPublish functionality */
.checkoutpage .showonorderok {
    display: none;	/* only in order view context */
}

.cpdlwrap .cpdt {
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 3px;
}

.cpdlwrap .cpdd {
    margin-bottom: 1rem;
    margin-left: 1rem;
    position: relative;
    padding: 4px 8px;
    line-height: 1.8;
}

.cpdlwrap.publicview.cpdefault .cpdd {
    padding: 0;
    margin-left: 1.5rem;
}

.cpdlwrap.publicview.cpdefault .cpdt {
    margin-bottom: 0;
}

.cpqrvingress {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
}

.cpclickable.qrvtypetext,
.cpclickable.qrvtypetextarea,
.cpclickable.qrvtypeemail,
.cpclickable.qrvtypetel {
    cursor: text;
}

dl.cpdefault dt {
    font-weight: 600;
    margin-top: 1rem;
}

dl.cpdefault dd[contenteditable] {
    padding: 0.25rem;
}

.cpdefault [contenteditable] {
    border: 1px solid #cecece;
    transition: all 0.2s ease;
    border-radius: 2px;
    background-color: rgba(0,0,0,0.02);
}

.cpdefault [contenteditable]:hover {
    border-color: rgba(0,0,0,0.7);
}

.cpdefault [contenteditable].cpisdirty {
    background-color: rgba(0,0,255,0.05);
}

.cpdefault [contenteditable][data-qtype="textarea"] {
    min-height: 64px;
}

.cphighvisbutton {

}

/* drag and drop sortable list */
.cpdefault .cpdragwrap {
    /* counter-reset: elem -1; */
}

.cpdefault .droptarget {
    position: relative;
    border: 1px solid transparent;
    cursor: grab;
    transition: all 0.2s ease;
    padding: 6px;
}

.cpdefault .droptarget::before {
    /* counter-increment: elem; */
    /* content: counter(elem); */
}

.cpdefault .droptarget:hover {
    border-color: rgba(0,0,0,0.1);
    background-color: rgba(0,0,0,0.02);
}

.cpdefault .droptarget:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
}

.cpdefault .dragElem {
    border-color: rgba(0,0,0,0.75);
}

.cpdefault .dragOver {
    border-top: 4px solid rgba(30,30,200,0.75);
}

@keyframes shake {
  51%{opacity:1;}
  100% {opacity:0;}
}

@keyframes fadeoutbg {
  0%{background-color: rgba(0,0,0,0.05);}
  51%{background-color: rgba(0,0,0,0.05);}
  100% {background-color: rgba(0,0,0,0.0);}
}

.shake {
  -webkit-animation-name: shake;
  animation: shake 4s forwards;
}

.cpsimpleform .hovereditmode.cpselementcontainer > div {
    position: relative;
}

.cpsimpleform .hovereditmode {
    transition: background-color 0.2s ease;
}

.cpsimpleform .hovereditmode .formqedlink {
    display: none;
    position: absolute;
    right: 1rem;
    padding: 0.2rem 0.5rem;
    width: 25px;
    height: 25px;
    line-height: 1;
    font-size: 16px;
    background-color: #225D84;
    color: #fff;
    border-radius: 60px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.04);
}

.cpsimpleform .hovereditmode:hover .formqedlink {
    display: inline-block;
}

.cpsimpleform .hovereditmode .formqedlink a { color: #fff; }

.cpsimpleform .hovereditmode .formqedlink .material-icons {
    font-size: 16px;
    margin-left: -0.15rem;
    line-height: 1.2;
}


@media all and (min-width: 480px) {

    .cpdefault {
        position: relative;
        display: flex;
    }

    dl.cpdefault {
        display: block;
    }

    .cpdefault.dragqueen .cpdragwrap {
        border: 1px dashed rgba(0,0,0,0.5);
    }

    .cpdefault.dragqueen .cpdragwrap:not(:first-of-type) {
        border-left: none;
    }

    .cpdefault .cpdragwrap {
        border: 1px dashed transparent;
        display: inline-block;
        vertical-align: top;
        transition:  all 0.2s linear;
    }

    .cpdefault .cpdragwrap {
        flex-grow: 1;
        flex-basis: 0;
    }

    .cpdefault .cpdragwrap:not(:last-of-type) {
        width: 100%;
    }

    .cpdefault .cpdragwrap:not(.haschildren) {
        width: 0;
        flex: 0;
        max-width: 10px;
    }

    .cpdefault.dragqueen .cpdragwrap {

    }

    .cpdefault.dragqueen .cpdragwrap:last-of-type:not(.haschildren) {
        flex: 1 10px;
        max-width: 10px;
    }

    .cpdefault .dummyfordrag {
        background-color: transparent;
        height: 100%;
        flex: 1;
        padding: 0;
    }

    .cpdefault .cpdragwrap .dummyfordrag.dragOver {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .cpdefault .cpdragwrap.haschildren {

    }

    .cpdefault .wasdragged {
        -webkit-animation-name: fadeoutbg;
        animation: fadeoutbg 2s forwards;
    }

    .cpdefault .wasdragged:before {
        content: "\2714";
        -webkit-animation-name: shake;
        animation: shake 4s forwards;
        position: absolute;
        font-size: 18px;
        top: 6px;
        right: 6px;
        color: #22bb5b;
    }
}

/* Plugin page */
.pluginadminbar .qftable td[style] {
    background-color: transparent !important;
    border-bottom: 1px solid #cecece;
}

.pluginadminbar .qftable td[style] b {
    font-size: 120%;
}

.pluginadminbar .qftable td {
    text-align: left;
    display: block;
    padding: 0;
}

.pluginadminbar .qftable td:last-child {
    margin-bottom: 0.5rem;
}

.pluginadminbar .qftable td input {
    margin-right: 0.5rem;
    margin-left: 2rem;
}

.pluginadminbar .qftable td input.large {
    width: 90%;
    max-width: 100%;
}

.pluginadminbar .qftable td textarea.large {
    width: 90%;
    min-height: 250px;
}

.pluginadminbar .qftable .formlabel {
    width: auto;
    font-weight: bold;
}

/* check data-whatinput to determine if we have loaded foundation */
body:not([data-whatinput]) .pluginadminbar .qftable input[type="submit"] {
    display: inline-block;
    vertical-align: middle;
    margin: 0.3rem 0 0.5rem;
    padding: 0.85em 1em;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.25s ease-out,color 0.25s ease-out;
    font-family: inherit;
    font-size: .9rem;
    -webkit-appearance: none;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #1779ba;
    color: #fefefe;
}


/* standalone template */
.standalone-content {
    padding: 0.5rem 1rem;
    margin: 0.5rem 1rem;
}

.standalone-content .standalone-logo-wrapper img {
    max-height: 100px;
}

.standalone-card {
    border-radius: 12px;
    padding: 2rem;
}

.soft-box-shadow {
    border: 1px solid #f9f9f9;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02),
                0 2px 4px rgba(0,0,0,0.02),
                0 4px 8px rgba(0,0,0,0.02),
                0 8px 16px rgba(0,0,0,0.02),
                0 16px 32px rgba(0,0,0,0.02),
                0 32px 64px rgba(0,0,0,0.02);
}

.standalone .cookietext {
    color: gray;
    font-size: 75%;
}

@media all and (max-width: 40em) {
        .standalone-content {
            padding: 0.1rem;
            margin: 0.1rem;
        }
        .standalone-card {
            border-radius: 6px;
            padding: 0.7rem;
        }
}

.standalone .cpselementcontainer {
    margin-bottom: 15px;
}
.standalone .cpsimpleform .cpstextheading {
    font-weight: 800;
}
.standalone select, .standalone input, .standalone [type="text"], .standalone [type="password"], .standalone [type="date"], .standalone [type="datetime"], .standalone [type="datetime-local"], .standalone [type="month"], .standalone [type="week"], .standalone [type="email"], .standalone [type="number"], .standalone [type="search"], .standalone [type="tel"], .standalone [type="time"], .standalone [type="url"], .standalone [type="color"], .standalone textarea {
    display: unset;
    width: unset;
    margin: unset;
}
.standalone fieldset {
    border: 1px solid #eee;
    padding: 0.7rem;
    margin: unset;
}
.standalone legend {
    font-size: 115%;
    padding: 0px 1rem;
}
.standalone .qwrpeloptions {
    font-weight: 800;
}
.standalone .cpsstatictext {
    color: gray;
}
.standalone .standalone-footercontent {
    margin: 0 1rem;
    padding: 1rem 2rem;
    color: #656565;
}
.standalone footer a {
    color: #ccc;
    font-size: 80%;
}

.standalone h1,
.standalone h2,
.standalone h3,
.standalone h4,
.standalone h5,
.standalone h6 {
    font-weight: 600;
    color: #444;
}

.standalone h1,
.standalone .loginheader {
    font-size: 2rem;
}

.standalone h2 { font-size: 1.6rem; }
.standalone h3 { font-size: 1.3rem; }
.standalone h4 { font-size: 1.2rem; }

.standalone .standalone-logo-wrapper {
    padding: 0 1rem 1rem;
}

.standalone .standalone-logo {
    max-width: 200px;
    max-height: 150px;
}


/* /standalone styles */



.caleventrepeatmsg {
    font-size: 80%;
    color: #cecece;
}
.caleventicallink {
    max-width: 4em !important;
    text-align: right;
    padding-right: 0.5em;
}



.onlyforprint {
      display: none;
}


table.plaintable,
#cpcprofilingtab,
#cpcprofilingtabXx {
    font-size: 13px;
    width: auto;
}

#cpcprofilingtab th,
#cpcprofilingtab td,
#cpcprofilingtabXx th,
#cpcprofilingtabXx td,
table.plaintable th,
table.plaintable td {
    padding: 3px 6px;
}

table.plaintable input[type="text"],
table.plaintable select {
    font-size: 13px;
    padding: 3px 6px;
    height: auto;
}

@media print {
        .noprint {
            display: none;
        }
        .onlyforprint {
            display: inline-block;
        }
        div.onlyforprint, section.onlyforprint {
            display: block;
        }
        .standalone-content {
            padding: unset;
            margin: unset;
        }
        .soft-box-shadow {
            border: 0;
            box-shadow: unset;
        }
        a {
            text-decoration: none;
            color: black;
        }
        footer{
            position: fixed;
            bottom: 0;
            margin: 0 auto;
            text-align: center;
        }
}


#cpcprofilingtab, .plaintable {

}

button.filepickerbtn {
    width: 22px;
    display: inline-block;
    vertical-align: middle;
    padding: 3px;
    background-color: #fafafa;
    border: 1px solid #757575;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 0.3rem !important;
    line-height: 1 !important;
    transition: all 0.2s ease;
}

button.filepickerbtn svg {
    width: 100%;
    height: 100%;
}    

button.filepickerbtn: hover {
    background-color: #f2f2f2;
}
    
.articlearchive .datehead .weekhead {
    font-weight: 600;
}

.articlearchive .publishedto {
    font-style: italic;
}

.animated-loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #c0c0c0;
  background: -moz-linear-gradient(left, #c0c0c0 10%, rgba(97,97,97, 0) 42%);
  background: -webkit-linear-gradient(left, #c0c0c0 10%, rgba(97,97,97, 0) 42%);
  background: -o-linear-gradient(left, #c0c0c0 10%, rgba(97,97,97, 0) 42%);
  background: -ms-linear-gradient(left, #c0c0c0 10%, rgba(97,97,97, 0) 42%);
  background: linear-gradient(to right, #c0c0c0 10%, rgba(97,97,97, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.animated-loader:before {
  width: 50%;
  height: 50%;
  background: #c0c0c0;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.animated-loader:after {
  background: #ffffff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* old form */

.formpaymentwrapper .form-paymentselect-options {
    padding: 1rem;
    margin-bottom: 1rem;
}

.formpaymentwrapper .form-paymentselect-options .form-paymentselect-option {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #cecece;
}

.form-paymentselect-option-heading {
    /* font-size: 18px; */
}

.formpaymentwrapper .form-payment-logos {
    text-align: center;
}


.byline {
    font-size: 80%;
    color: gray;
}

.byline a, .byline a:visited {
    color: gray;
}


/* template properties edit */

.propeditdialog .payload {
    padding: 2rem;
    max-height: 75vh;
    overflow-y: scroll;
}

.propeditdialog .payload fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.propeditdialog .payload fieldset legend {
    margin: 0 0 1rem 0;
    padding: 0;
}

.propeditdialog .payload form .cpstextheading {
    font-weight: 600;
    color: #454545;
}

.propeditdialog .payload form input[type="text"] {
    margin-bottom: 1rem;
}

.staform-form:not(.layout-type-xygrid) input[type="text"],
.staform-form:not(.layout-type-xygrid) input[type="email"],
.staform-form:not(.layout-type-xygrid) input[type="tel"],
.staform-form:not(.layout-type-xygrid) input[type="password"],
.staform-form:not(.layout-type-xygrid) input[type="date"],
.staform-form:not(.layout-type-xygrid) input[type="time"],
.staform-form:not(.layout-type-xygrid) textarea {
    margin-bottom: 0.8rem;
}

.staform-form input + .help-text,
.staform-form textarea + .help-text {
    color: #757575;
}

.staform-form fieldset {
    margin-bottom: 6px;
}

.staform-form.layout-type-xygrid .help-text {
    margin-top: 0;
    display: inline;
}

.staform-form .form-error {
    margin-top: 0;
}


.staform-form .staform-field-container {
    margin-bottom: 12px;
}
.staform-form .staform-field-label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.3;
}
.staform-form .staform-field-image {
    font-size: 0.95rem;
}
.staform-form div.staform-field-label {
    /* label ser ut til aa ligge i _label.scss...  arnt h */
    /* font-size: 0.875rem; */
}

.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal label,
.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal input,
.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal .staform-field-label,
.staform-form:not(.layout-type-xygrid) .staform-fieldset.fieldset-layout-horizontal label,
.staform-form:not(.layout-type-xygrid) .staform-fieldset.fieldset-layout-horizontal input,
.staform-form:not(.layout-type-xygrid) .staform-fieldset.fieldset-layout-horizontal .staform-field-label
{ 
    display: inline-block;
}

.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal label,
.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal .staform-field-label,
.staform-form:not(.layout-type-xygrid) .staform-fieldset.fieldset-layout-horizontal label,
.staform-form:not(.layout-type-xygrid) .staform-fieldset.fieldset-layout-horizontal .staform-field-label
{
    text-align: right;
    margin-bottom: 0.8rem;
}
.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal label:not(.foroption),
.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal .staform-field-label,
.staform-form:not(.layout-type-xygrid) .staform-fieldset.fieldset-layout-horizontal label:not(.foroption) {
    width: 120px;
}

.staform-form:not(.layout-type-xygrid) .staform-field.layout-horizontal .grid-x label, 
.staform-form:not(.layout-type-xygrid) .staform-fieldset.fieldset-layout-horizontal label {
    width: auto;
}


.staform-form .options-horizontal .staform-option-wrapper {
    display: inline-block;
}

.staform-form .staform-field-subtitle {
    font-size: 0.6rem;
    color: #555555;
}

.staform-form .staform-fieldgroup-ingress {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #4a4a4a;
}

.staform-form .icon-toggler {
  position: relative;
  text-align: center; }
  .icon-toggler [type="checkbox"],
  .icon-toggler [type="radio"] {
    position: absolute;
    opacity: 0; }
    .icon-toggler [type="checkbox"] + label svg,
    .icon-toggler [type="radio"] + label svg {
      color: rgba(10, 10, 10, 0.25);
      width: 26px;
      height: 26px;
      margin-right: 0.5rem;
      vertical-align: middle;
      transition: all 0.2s ease; }
    .icon-toggler [type="checkbox"]:checked + label,
    .icon-toggler [type="radio"]:checked + label {
      background-color: rgba(58, 219, 118, 0.1);
      color: #3a3a3a; }
      .icon-toggler [type="checkbox"]:checked + label:hover,
      .icon-toggler [type="radio"]:checked + label:hover {
        background-color: rgba(58, 219, 118, 0.15); }
    .icon-toggler [type="checkbox"]:checked + label svg,
    .icon-toggler [type="radio"]:checked + label svg {
      color: #3adb76; }
  .icon-toggler label {
    /* width: 100%; */
    padding: 1rem 1.8rem 1rem 1rem;
    margin: 0 0.5rem 1rem 0;
    border-radius: 14px;
    background-color: rgba(254, 254, 254, 0.35);
    line-height: 1.2;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04), 0 8px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease; }
    .icon-toggler label:hover {
      background-color: rgba(254, 254, 254, 0.25);
}
.icon-toggler label .fi-check {
    margin-right: 0.33rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.icon-toggler input:checked + label .fi-check {
    opacity: 1;
}

.cpcommonajaxdialog[style] {
    max-height: calc(100% - 100px);
    overflow-y: auto !important;
}

:root {
    --ck-color-mention-background: hsla(341, 100%, 30%, 0.1);
    --ck-color-mention-text: hsl(341, 100%, 30%);
    --ck-color-table-caption-background: hsl(0, 0%, 97%);
    --ck-color-table-caption-text: hsl(0, 0%, 20%);
    --ck-highlight-marker-blue: hsl(201, 97%, 72%);
    --ck-highlight-marker-green: hsl(120, 93%, 68%);
    --ck-highlight-marker-pink: hsl(345, 96%, 73%);
    --ck-highlight-marker-yellow: hsl(60, 97%, 73%);
    --ck-highlight-pen-green: hsl(112, 100%, 27%);
    --ck-highlight-pen-red: hsl(0, 85%, 49%);
    --ck-image-style-spacing: 1.5em;
    --ck-todo-list-checkmark-size: 16px;
}

/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-yellow {
    background-color: var(--ck-highlight-marker-yellow);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-green {
    background-color: var(--ck-highlight-marker-green);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-pink {
    background-color: var(--ck-highlight-marker-pink);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-blue {
    background-color: var(--ck-highlight-marker-blue);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-red {
    color: var(--ck-highlight-pen-red);
    background-color: transparent;
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-green {
    color: var(--ck-highlight-pen-green);
    background-color: transparent;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-tiny {
    font-size: .7em;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-small {
    font-size: .85em;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-big {
    font-size: 1.4em;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-huge {
    font-size: 1.8em;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image {
    display: table;
    clear: both;
    text-align: center;
    margin: 1em auto;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 50px;
}
/* ckeditor5-image/theme/imagecaption.css */
.ck-content .image > figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: hsl(0, 0%, 20%);
    background-color: hsl(0, 0%, 97%);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-side {
    float: right;
    margin-left: var(--ck-image-style-spacing);
    max-width: 50%;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-left {
    float: left;
    margin-right: var(--ck-image-style-spacing);
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-right {
    float: right;
    margin-left: var(--ck-image-style-spacing);
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized img {
    width: 100%;
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized > figcaption {
    display: block;
}
/* ckeditor5-language/theme/language.css */
.ck-content span[lang] {
    font-style: italic;
}
/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre {
    padding: 1em;
    color: hsl(0, 0%, 20.8%);
    background: hsla(0, 0%, 78%, 0.3);
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    text-align: left;
    direction: ltr;
    tab-size: 4;
    white-space: pre-wrap;
    font-style: normal;
    min-width: 200px;
}
/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre code {
    background: unset;
    padding: 0;
    border-radius: 0;
}
/* ckeditor5-horizontal-line/theme/horizontalline.css */
.ck-content hr {
    margin: 15px 0;
    height: 4px;
    background: hsl(0, 0%, 87%);
    border: 0;
}
/* ckeditor5-html-embed/theme/htmlembed.css */
.ck-content .raw-html-embed {
    margin: 1em auto;
    min-width: 15em;
    font-style: normal;
}
/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content blockquote {
    overflow: hidden;
    padding-right: 1.5em;
    padding-left: 1.5em;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    border-left: solid 5px hsl(0, 0%, 80%);
}
/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content[dir="rtl"] blockquote {
    border-left: 0;
    border-right: solid 5px hsl(0, 0%, 80%);
}
/* ckeditor5-basic-styles/theme/code.css */
.ck-content code {
    background-color: hsla(0, 0%, 78%, 0.3);
    padding: .15em;
    border-radius: 2px;
}
/* ckeditor5-table/theme/table.css */
.ck-content .table {
    margin: 1em auto;
    display: table;
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double hsl(0, 0%, 70%);
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table td,
.ck-content .table table th {
    min-width: 2em;
    padding: .4em;
    border: 1px solid hsl(0, 0%, 75%);
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table th {
    font-weight: bold;
    background: hsla(0, 0%, 0%, 5%);
}
/* ckeditor5-table/theme/table.css */
.ck-content[dir="rtl"] .table th {
    text-align: right;
}
/* ckeditor5-table/theme/table.css */
.ck-content[dir="ltr"] .table th {
    text-align: left;
}
/* ckeditor5-table/theme/tablecaption.css */
.ck-content .table > figcaption {
    display: table-caption;
    caption-side: top;
    word-break: break-word;
    text-align: center;
    color: var(--ck-color-table-caption-text);
    background-color: var(--ck-color-table-caption-background);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break {
    position: relative;
    clear: both;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break::after {
    content: '';
    position: absolute;
    border-bottom: 2px dashed hsl(0, 0%, 77%);
    width: 100%;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break__label {
    position: relative;
    z-index: 1;
    padding: .3em .6em;
    display: block;
    text-transform: uppercase;
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    font-family: Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
    font-size: 0.75em;
    font-weight: bold;
    color: hsl(0, 0%, 20%);
    background: hsl(0, 0%, 100%);
    box-shadow: 2px 2px 1px hsla(0, 0%, 0%, 0.15);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* ckeditor5-media-embed/theme/mediaembed.css */
.ck-content .media {
    clear: both;
    margin: 1em 0;
    display: block;
    min-width: 15em;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list {
    list-style: none;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li {
    margin-bottom: 5px;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li .todo-list {
    margin-top: 5px;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input {
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    width: var(--ck-todo-list-checkmark-size);
    height: var(--ck-todo-list-checkmark-size);
    vertical-align: middle;
    border: 0;
    left: -25px;
    margin-right: -15px;
    right: 0;
    margin-left: 0;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::before {
    display: block;
    position: absolute;
    box-sizing: border-box;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid hsl(0, 0%, 20%);
    border-radius: 2px;
    transition: 250ms ease-in-out box-shadow, 250ms ease-in-out background, 250ms ease-in-out border;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::after {
    display: block;
    position: absolute;
    box-sizing: content-box;
    pointer-events: none;
    content: '';
    left: calc( var(--ck-todo-list-checkmark-size) / 3 );
    top: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
    width: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
    height: calc( var(--ck-todo-list-checkmark-size) / 2.6 );
    border-style: solid;
    border-color: transparent;
    border-width: 0 calc( var(--ck-todo-list-checkmark-size) / 8 ) calc( var(--ck-todo-list-checkmark-size) / 8 ) 0;
    transform: rotate(45deg);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::before {
    background: hsl(126, 64%, 41%);
    border-color: hsl(126, 64%, 41%);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::after {
    border-color: hsl(0, 0%, 100%);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label .todo-list__label__description {
    vertical-align: middle;
}
/* ckeditor5-mention/theme/mention.css */
.ck-content .mention {
    background: var(--ck-color-mention-background);
    color: var(--ck-color-mention-text);
}
@media print {
    /* ckeditor5-page-break/theme/pagebreak.css */
    .ck-content .page-break {
        padding: 0;
    }
    /* ckeditor5-page-break/theme/pagebreak.css */
    .ck-content .page-break::after {
        display: none;
    }
}