#oap {
    position: fixed;
    background-color: white;
    border: 1px solid lightgrey;
    overflow: auto;
    max-height: 500px;
    min-width: 200px;
    font-weight: 300;
    z-index: 2;
}

#oap header {
    display: flex;
    border-bottom: 1px solid lightgrey;
    padding: 8px 16px;
    width: 100%;
}

#oap header .back {
    cursor: pointer;

}

#oap header .oap-title {
    flex-grow: 1;
    font-weight: bold;
    padding:2px 5px;
    font-family: inherit;
}

#oap header .oap-close {
    cursor: pointer;
    padding-left: 10px;
}

/* property edtior */
.oap-properties .property {
    padding: 5px;
    padding-right: 15px;
    cursor: pointer;
}

.oap-properties .property[data-choice-list="true"][data-editable="true"]::after {
    content: '\025B8';
    top: unset;
}

#oap .property-choice {
    padding: 3px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
#oap .property-choice.selected {
    font-weight: bold;
}

/* action edtior */
/* .oap-actions {
    max-width: 220px;
} */

.oap-actions.tile {
    max-width: 640px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5px;
}

.oap-actions.list {
    display: block;
    color: black;
    font-weight: normal;
}

.oap-action {
    /* width: 150px; */
    padding:5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    height: auto;
    border: 1px solid lightgrey;
    margin: 5px;
}

.oap-action-label {
    padding:5px;
    margin-left: 10px;
    font-weight: normal;
  }

.oap-action:hover {
    border-color: #000;
}

.oap-action.small {
    width: 100px;
}

.oap-action.medium {
    width: 200px;
}

.oap-action.large {
    width: 400px;
}

.oap-action-icon {
    max-width: 100%;
    max-height: 100%;
}

.oap-action-text {}

.oap-media {
    overflow: initial !important;
}

.oap-media .close {
    position: absolute;
    top: -25px;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 1px solid black;
    background-color: white;
    text-align: center;
}

.oap-media .close {
    border-color: #000;
}

.oap-message {
    padding: 10px;
}
.oap-message .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 1px solid black;
    background-color: white;
    text-align: center;
}

/*# sourceMappingURL=main.css.map*/