
.post-tool-wrapper {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.post-tool-no-permission {
    align-self: start;

    color: #E04D46;
    font-size: 12px;

    margin-top: 6px;
}

.post-tool-no-permission-link {
    text-decoration: underline;
    cursor: pointer;
}

.post-tool-no-permission-link:link {
    color: #E04D46;
}

.post-tool-no-permission-link:visited {
    color: #E04D46;
}

.post-tool-no-permission-link:hover {
    color: #E04D46;
}

.post-tool-no-permission-link:active {
    color: #E04D46;
}

.post-tool-action-buttons {
    align-self: end;
    display: flex;
    flex-direction: row;
    height: 40px;
    margin-top: 12px;
}

.post-tool-button-cancel {
    margin-bottom: 0 !important;

    background-color: #EBEBEB !important;
    border: none !important;
}

.post-tool-button-publish {
    margin-bottom: 0 !important;
    margin-right: 0 !important;

    display: flex;
    flex-direction: row;
    align-items: center;

    background-color: #000000 !important;
    color: white;
    border: none !important;
}

.post-tool-publish-icon, .post-tool-download-icon {
    margin-right: 12px;
}
.post-tool-download-icon::before{
    font-family: fermat-icons;
    font-size: 18px;
    content: '\e828';
    color:white;
}
.post-tool-publish-icon::before {
    font-family: fermat-icons;
    font-size: 18px;
    content: '\e829';
    color:white;
}

.post-tool-image-wrapper {
    width: 100%;
}

.post-tool-image {
    object-fit: cover;
    height: 250px;
    max-width: 100%;
    cursor: pointer;
    border: 1px solid #EBEBEB;

}

.post-tool-image-label {
    display: flex;
    flex-direction: column;
}

.post-tool-image-edit {
    align-self: end;
    margin-top: 8px;
    color: #A2A2A2;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

.post-tool-input-image {
    display: none;
}

.post-tool-editable-attributes {
    width: calc(100% - 12px);
    flex-grow: 1;
    overflow-y: scroll;
    padding-right: 12px;
}

.post-tool-title {
    font-size: 1.7em;
    font-weight: 500;
    margin: 0rem 0 0.5rem;
}

.post-tool-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #636363;
}

.post-tool-label {
    font-size: 12px;
    font-weight: 500;
    color: #A2A2A2;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    margin-top: 20px;
}

.post-tool-description {
    width: calc(100% - 18px);
    padding: 8px;
    min-height: 8em;
    resize: none;
    border: 1px solid #EBEBEB;
    background-color: #FAF9F5;
    font-family: 'Poppins', sans-serif;
    font-size: 13.33px;
    overflow-y: scroll;
}

.post-tool-description:focus {
    outline: none;
}

[contenteditable=true].post-tool-description:empty:before {
    content: attr(data-placeholder);
    color: #A2A2A2;
}

.post-tool-title-input {
    padding: 8px;
    border: 1px solid #EBEBEB;
    background-color: #FAF9F5;
    font-family: 'Poppins', sans-serif;
}

.post-tool-title-input {
    outline: none;
}

.post-tool-input-descriptor {
    font-size: 12px;
    color: #A2A2A2;
}

.post-tool-visibility-wrapper {
}

.post-tool-visibility-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.post-tool-button {
    padding: 10px 18px;
    margin: 0 8px 8px 0;

    border-radius: 0;
    background-color: white;
    border: 1px solid black;

    font-size: 14px;
    font-weight: 400;

    cursor: pointer;
}

.post-tool-visibility-selected {
    color: #2A2A2A;
    border: 1px solid #2A2A2A;
}

.post-tool-visibility-unselected {
    color: #A2A2A2;
    border: 1px solid #A2A2A2;
}

.post-tool-tag-wrapper {
    display: flex;
    flex-direction: column;
}

.post-tool-tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.post-tool-tag {
    display: flex;
    flex-direction: row;
    width: fit-content;

    margin: 0px 8px 8px 0px;
    padding: 4px 12px;
    border: 1px solid #EBEBEB;
    border-radius: 3px;
    align-items: center;
}

.post-tool-tag:hover {
    border-color: #A2A2A2;
}

.post-tool-tag:active {
    border-color: black;
}

.post-tool-tag-icon {
    color: #A2A2A2;
}

.post-tool-tag-icon-add {
    margin-right: 0.6em;
}

.post-tool-tag-icon-delete {
    margin-left: 0.6em;
}

.rotate-45 {
    transform: rotate(45deg);
}

.post-tool-tag-icon-remove:hover {
    cursor: pointer;
}

.post-tool-tag-name {
    border: none;
    font-size: 14px;
    color: #A2A2A2;
    font-weight: 300;
}

.post-tool-tag-set > .post-tool-tag-name {
    color: black;
    font-weight: 400;
}

.post-tool-tag-name:focus {
    outline: none;
}

.post-tool-tag-name:empty:before{
    content:attr(data-ph);
    cursor: text;
    color: #A2A2A2;
}