@media (max-width: 767px) {
    .aopa-right-panel {
        width: 95vw;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .aopa-right-panel {
        width: 55vw;
    }
}

@media (min-width: 992px) {
    .aopa-right-panel {
        width: 42vw;
    }
}

.aopa-right-panel {
    height: 100%;
    display: block;
    background: #eef1ef;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06), 0 2px 22px rgba(0, 0, 0, .16);
    transition: transform 400ms ease;
    transform: translateY(130%);
}

.aopa-right-panel.is-open {
    transform: translateY(0);
}

.aopa-right-panel-header {
    height: 50px;
    padding: 5px 5px 5px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    background-color: #efa91e;
}

.aopa-right-panel-header > span {
    padding-left: 20px;
    font-weight: bold;
}

.aopa-right-panel-header button {
    margin-left: auto;
    padding-right: 10px;
    color: black;
    font-size: 30px;
}

.aopa-right-panel-body {
    height: calc(100% - 100px);
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.aopa-right-panel-body .aopa-right-panel-table {
    max-height: 230px;
    overflow: auto;
}

.aopa-right-panel-footer {
    height: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: end;
}

.aopa-right-panel-controls {
    height: 40px;
    float: left;
    width: 100%;
}

.ta-editor.form-control.aopa-right-panel-editor,
.ta-scroll-window.form-control.aopa-right-panel-editor  {
    height: 200px;
    min-height: 200px;
    overflow: auto;
    font-family: inherit;
    font-size: 100%;
}
.form-control.aopa-right-panel-editor > .ta-bind {
    min-height: 200px;
    padding: 6px 12px;
}
/*# sourceMappingURL=aopa-right-panel.css.map */