.main_content {
    max-width: 1150px;
    /* width: 67em; */
    margin: 2em;
}

.pictures {
    cursor: pointer;
}

.delete_picture {
    /* background: transparent url(/img/x_hover.svg) no-repeat; */
    background-color: white;
    position: absolute;
    font-size: 3em;
    align-self: flex-start;
    justify-self: flex-start;
    line-height: 0;
    padding: 0.15em;
    /* border: 0.15em solid transparent; */
    box-shadow: var(--raised_button);
    font-weight: 800;
    right: 0;
    z-index: 1;
    cursor: pointer;
--red:
    rgba(255,0,0,1);
}

.delete_picture:hover {
    background-color: var(--red);
}

.delete_picture:hover svg {--red:rgba(255,255,255,1);}

.pictures:before {
    content: '!';
    color: red;
    background-color: white;
    position: absolute;
    font-size: 3em;
    align-self: flex-start;
    justify-self: flex-start;
    line-height: 1;
    padding: 0.2em;
    border-bottom-right-radius: 0.5em;
    box-shadow: var(--raised_button);
    font-weight: 800;
}

.pictures:after {
    animation: 0.15s fadeIn;
    animation-fill-mode: forwards;
    font-size: 2.5em;
    font-family: 'concourse_sc';
    background-color: white;
    font-feature-settings: 'c2sc';
    box-shadow: var(--raised_button);
    font-weight: 400;
    line-height: 0.8;
    position: absolute;
    top: 30%;
    padding: 0.2em;
    padding-bottom: 0.3em;
    margin-top: -0.1em;
    align-self: center;
    justify-self: center;
    width: 100%;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pictures:hover:after {
    /* background-color: beige; */
    content: 'Choose new:';
}

.pictures .choices span+span:before {
    content: ' |';
    /* text-decoration: underline; */
    /* padding: 0 0.26em; */
    cursor: default;
    color: gray;
    font-size: 0.9em;
    line-height: 0;
    margin-top: -0.1em;
}

.choices {
    display: none;
}

.pictures:hover .choices {
    animation: 0.15s fadeIn;
    animation-fill-mode: forwards;
    display: flex;
    font-size: 2.5em;
    font-family: 'concourse_sc';
    background-color: white;
    font-feature-settings: 'c2sc';
    box-shadow: var(--raised_button);
    font-weight: 400;
    line-height: 0;
    position: absolute;
    bottom: 30%;
    padding: 0.6em;
    align-self: center;
    justify-self: center;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    opacity: 0.9;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.change_image, .change_video {
    line-height: 0;
    padding: 0.01em;
    margin: 0;
    height: 0;
    color: #00b3ff;
    font-feature-settings: 'c2sc', 'ss02';
    display: inline-flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.change_image:hover, .change_video:hover {
    color: blue;
}

.plyr.editing {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.new_audio, .new_video {
    display: flex;
    flex-flow: row;
    cursor: pointer;
    border: 0.07em solid black;
    padding: 0.35em;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.3em;
    font-size: 0.9em;
    z-index: 999;
    /* position: absolute; */
}

.new_video {
    position: absolute;
    border: none;
    background-color: white;
    padding: 0.5em 0.6em;
    align-self: center;
    justify-self: center;
}

.new_audio:before, .new_video:before {
    cursor: pointer;
    content: "\21CC";
    font-weight: 600;
    font-size: 2em;
    transform: rotate(90deg);
    color: yellowgreen;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.new_audio:after, .new_video:after {
    display: block;
    font-feature-settings: 'c2sc';
    line-height: 1;
    text-align: right;
}

.new_audio:after {
    content: "Change Audio";
}

.new_video:after {
    content: "Change Video";
}

.new_audio:hover:before, .new_video:hover:before {
    color: blue;
}

.new_audio:hover:after, .new_video:hover:after {
    font-weight: 600;
}

#display_area, .brief, #display_area .notes {
    width: 100%;
    padding: 0!important;
    margin: 0;
    align-self: stretch;
}

#image_area {
    margin-top: 1em;
    display: flex;
    flex-flow: row wrap;
    gap: 2em;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 9em;
    position: relative;
}

div#image_area:before {
    content: 'Image Gallery';
    position: absolute;
    top: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3em;
    text-decoration: underline;
    margin: 0 auto;
    padding-left: 1em;
}

#loaded_images {
    display: flex;
    flex-flow: row wrap;
    gap: 5em;
    position: relative;
    /* padding-top: 7.5em; */
    margin-left: 1em;
    /* margin: 0 auto; */
    justify-content: center;
}

#loaded_images:before {
    /* content: 'Adjust Image Order'; */
    position: absolute;
    font-feature-settings: 'c2sc';
    top: 0;
    font-size: 2.5em;
    font-weight: 700;
    border-bottom: 0.05em solid;
    /* width: 100%; */
    /* text-align: center; */
    /* margin-bottom: 2em; */
    min-width: 10em;
    transform: translateX(-50%);
}

div#loaded_images div[data_collection] {
    display: flex;
    flex-flow: column wrap;
    max-width: 20em;
    /* flex: 0 0 9%; */
    gap: 1.2em;
    /* max-height: 23em; */
    align-items: center;
}

div[data_collection] .the_icon.add {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row;
    gap: 1em;
    width: 100%;
    justify-self: self-start;
    cursor: pointer;
    padding: 0.5em;
    outline: 0.1em solid black;
    background: rgba(40,40,200,0.1);
}

div[data_collection] .the_icon.add:hover {
    background-color: rgba(40,200,40,0.2);
}

div[data_collection] span.title {
    font-weight: 700;
    font-size: 1.3em;
    font-feature-settings: 'c2sc';
    line-height: 1;
    margin-top: -0.1em;
}

div[data_collection] .the_icon.add svg {
    width: 2em;
    height: 2em;
}

div[data_collection] .image_interact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image_interact:after {
    content: var(--order);
    /* align-self: baseline; */
    border: 0.2em solid black;
    line-height: 1;
    padding: 0.4em;
    margin-left: 0.7em;
    font-weight: 400;
    font-size: 1em;
}

.image_interact .a_class {
    background: rgba(255, 255, 255, 0) no-repeat center;
    width: 6em;
    height: 6em;
    background-size: contain;
}

.image_interact .buttons {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 1em;
    /* gap: 0.1em; */
    margin-right: 0.65em;
}

.buttons > div {
    width: 1.7em;
    height: 1.7em;
    /* padding: 0.1em; */
    cursor: pointer;
    border: 0.01em solid rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons .move_up svg {
    transform: rotate(-90deg);
    line-height: 0;
    z-index: -1;
}

.buttons .move_down svg {
    transform: rotate(90deg);
    line-height: 0;
    z-index: -1;
}

.buttons .delete svg {
    transform: rotate(45deg);
    line-height: 0;
    z-index: -1;
}

div.new_collection {
    /* width: 12em; */
    position: relative;
    display: flex;
    flex-flow: row;
    text-align: center;
    /* font-weight: 600; */
    /* font-size: 1.5em; */
    align-items: center;
    justify-content: center;
    /* margin-top: 6em; */
    margin-left: 1em;
    align-self: baseline;
    justify-self: baseline;
}

div.new_collection span.the_icon {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-feature-settings: 'c2sc';
    font-size: 2.1em;
    width: 6.1em;
    cursor: pointer;
    /* position: absolute; */
    /* z-index: 3; */
    background: white;
    border: 0.04em dashed black;
    padding: 0.3em;
}

form.new_collection span.the_icon .title {
    font-size: 0.76em;
}

form.new_collection svg {
    /* font-size: 1.3em; */
}

form.new_collection {
    align-items: flex-start;
    margin-top: 0.9em;
    /* display: none; */
}

form.new_collection .float_label {
    font-size: 0.7em;
}

form.new_collection input {
    margin-bottom: 0.5em;
}

.the_icon svg {
    z-index: 1;
    width: 5.6em;
    height: 5em;
    position: relative;
    cursor: pointer;
    background: rgba(40,40,200,0.2);
}

.the_icon.upload:hover svg {
    background: rgba(40,200,40,0.2);
}

.the_icon.add:hover svg {
    background: rgba(0,0,0,0);
}

.new_collection> svg:hover {
    background: rgba(40,200,40,0.2);
}

#display_area+button, #brief+button {
    margin: 0 auto;
    margin-top: 2em;
}

#display_area .tox.tox-tinymce, .brief .tox.tox-tinymce, .notes .tox.tox-tinymce {
    max-width: 46em!important;
    width: 100vw!important;
    padding: 0 0.5em;
    border: 0;
    /* width: calc(100% - 1em)!important; */
    max-height: 50em!important;
    overflow-y: auto;
    align-self: center;
}

.tox-editor-header {
    /* border: 0; */
    box-shadow: none!important;
}

#title {
    padding: 0.1em 1em;
    border: 0.06em solid lightblue;
    display: flex;
    align-items: center;
    position: relative;
    outline: none;
    font-size: 0.6em;
}

#title:after {
    content: '<-';
    position: absolute;
    right: -1.4em;
    font-weight: 800;
    font-family: 'equity_text';
    font-feature-settings: 'ss08';
    color: red;
}

#content {
    /* font-size: 1.3em; */
}

#minidash {
    display: flex;
    flex-flow: row;
    width: 100%;
    /* border-top: 2px solid black; */
    padding-top: 0.2em;
    font-size: 0.9em;
}

#interact {
    display: flex;
    gap: 2em 0;
    flex-flow: row;
    /* padding: 1em; */
    align-items: stretch;
}

#interact div {
    padding: 0.75em;
    cursor: pointer;
    border-bottom: 2px solid black;
    font-weight: 700;
    border-top: 2px solid black;
    font-size: 1.1em;
    /* text-transform: uppercase; */
    /* font-feature-settings: 'ss11'; */
}

#interact div:first-of-type {
    border-left: 2px solid black;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
}

#interact div:last-of-type {
    border-right: 2px solid black;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
}

#interact div+div {
    border-left: 2px solid black;
}

.posts_area {
    font-size: 0.7em!important;
    gap: 2em;
}

.posts_area > div {
    width: 100%;
    gap: 1.4em;
    display: flex;
    flex-flow: row wrap;
    padding: 0.9em 0.9em;
    align-items: baseline;
    flex: 1 1 100%;
    position: relative;
    justify-content: space-between;
    margin-top: 2em;
    /* padding-top: 4em; */
}

.posts_area h2 {
    margin: 0;
    /* text-decoration: underline; */
    /* text-underline-position: from-font; */
    /* margin-bottom: -0.4em; */
    position: absolute;
    top: 0.7em;
    z-index: 1;
    color: var(--complement_high);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* width: 13em; */
    max-width: 100%;
}

.drafts .new_post {
    display: block!important;
    outline: 0.08em solid black;
    /* border-radius: 0.05em; */
}

.posts_area > div > div {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.3em;
    width: 27em;
    /* min-width: 40%; */
    background-color: transparent;
    outline: 0px solid transparent;
    font-size: 0.6em;
    position: relative;
}

.posts_area > div > div:first-of-type {
    margin-top: 3.3em;
}

.posts_area > div > div:hover {
    outline: 2px solid black;
    background-color: white;
    /* animation: 0.55s; */
    /* animation-fill-mode: forwards; */
    transition: all .10s;
}

.posts_area > div > div:hover .actions:hover + .information {
    /* filter: blur(1px); */
}

.posts_area div.information {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.6em;
}

.posts_area div.actions {
    display: flex;
    gap: 0.3em;
    flex-flow: column;
    /* position: relative; */
    z-index: 0;
}

.posts_area div.actions:hover:before {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.9);
    /* background: linear-gradient(to left, rgba(0,0,0,0) -3%, rgba(251,251,239,0.9) 38%); */
    height: calc(100% - 0.6em);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* z-index: 1; */
    /* filter: blur(0px); */
    /* backdrop-filter: blur(1px); */
    /* box-shadow: var(--raised_button); */
    /* transition: all 1.5s ease-in-out; */
    /* z-index: -2; */
    width: 100%;
    /* padding: 0.3em 0; */
    align-self: center;
    justify-content: center;
}

.posts_area div.actions:before {
    content: '';
    position: absolute;
    transition: width .25s linear;
    animation-fill-mode: forwards;
    width: 0;
    height: 100%;
    pointer-events: none;
}

div.actions div {
    line-height: 0;
    height: auto;
    display: flex;
    position: relative;
    cursor: pointer;
    width: 100%;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

div.actions div:hover:before {
    content: var(--tooltip);
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* align-self: flex-start; */
    /* justify-self: center; */
    font-feature-settings: 'c2sc';
    /* background-color: white; */
    /* padding: 2em; */
    display: block;
    height: auto;
    line-height: 1;
    padding: 0 0.5em;
    /* border-radius: 0.5em; */
    /* box-shadow: var(--raised_button); */
    font-weight: 600;
    color: black;
    animation: 0.15s fadeIn;
    animation-fill-mode: forwards;
    right: 100%;
    /* border-bottom: 0.1em solid black; */
    text-decoration: underline 0.08em blue;
    text-underline-position: from-font;
    /* border-bottom: 6px; */
}

div.actions div:hover:after {
    /* content: ''; */
    /* position: absolute; */
    /* background: blue; */
    /* height: 5.6em; */
    /* width: 19.7em; */
    /* right: 0; */
    /* z-index: -1; */
    /* top: 0; */
    /* transform: translateY(-50%); */
}

div.actions div:hover {
    box-shadow: var(--raised_button);
}

div.actions div:after {
    /* content: ''; */
    position: absolute;
    transition: all .25s cubic-bezier(0.4, 0, 1, 1);
    width: 0;
    height: 100%;
}

div.information .image {
    width: 5em;
    height: 5em;
    clip-path: circle(69.5% at 50% 50%);
    z-index: 1;
}

div.information .title_date {
    /* font-family: 'equity_text'; */
    font-weight: 500;
    font-size: 1.1em;
    font-feature-settings: 'c2sc';
    display: flex;
    flex-flow: column;
    gap: 0.2em;
}

div.information .title_date .title {
    /* text-transform: capitalize; */
    font-size: 1.1em;
}

.posts_area .published:before {
    content: 'Published';
}

.posts_area .drafts:before {
    content: 'Drafts';
}

.posts_area .published:before, .posts_area .drafts:before {
    font-feature-settings: 'c2sc';
    font-size: 2.5em;
    font-weight: 600;
    line-height: 1;
    /* margin-bottom: -0.6em; */
    position: absolute;
    top: -0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* width: 13em; */
    max-width: 100%;
}
