.drawer-table {
    border: 1px solid #EBEBEB;
    transition: all .1s ease-out;
}

.drawer-table tbody {
    display: none;
}

.drawer-table tbody.body-active {
    display: table-row-group;
    word-break: break-word;
}

.drawer-title {
    font-size: 16px;
    line-height: 60px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: space-between;
}

.drawer-table .ico-plus {
    width: 60px;
    height: 60px;
    margin-right: 1em;
}

.drawer-table .ico-plus::after {
    content: "+";
    font-size: 20px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2em;
    transition: all .1s ease-out;
}

.drawer-table .ico-plus.active::after {
    transform: rotate(45deg);
}

.title-placeholder,
.content-placeholder {
    display: none;
}

.drawer-title h2.drawer-title-area {
    margin-bottom: 0;
}

.insert-tiny-table.drawer-table,
.insert-tiny-table.drawer-table tr,
.insert-tiny-table.drawer-table th {
    height: auto !important;
}

.insert-tiny-table.drawer-table .drawer-title {
    width: 100%;
}

@media screen and (max-width:1068px) {
    .drawer-table .ico-plus{
        width: 10px;
    }
}