.toggleBox.cke_widget_element {
    border-radius: 8px;
    border: 1px dotted #ccc;
    padding: 0 10px;
    margin-bottom: 10px;
}
.toggleBox.cke_widget_element .toggleBox-content {
    display: block;
}

.toggleBox:last-of-type {
    box-shadow: inset 0 -1px 0 0 #e4e5e6;
}
.toggleBox .toggleBox-title, .toggleBox h2 {
    box-shadow: inset 0 1px 0 0 #e4e5e6;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: #4c5459;
    padding: 12px 0;
    margin: 0;
}
.toggleBox .toggleBox-title {
    position: relative;
    cursor: pointer;
}
.toggleBox .toggleBox-title::before, .toggleBox .toggleBox-title::after {
    content: '';
    display: block;
    position: absolute;
    background: #797f82;
    width: 3px;
    border-radius: 2px;
    height: 10px;
    top: calc(50% - 8px);
    right: 8px;
    transform: rotate(-135deg);
    transition: all 0.3s ease;
}
.toggleBox .toggleBox-title::before {
    transform: rotate(135deg);
    right: 13px;
}
.toggleBox .toggleBox-title.opened::before {
    transform: rotate(45deg);
}
.toggleBox .toggleBox-title.opened::after {
    transform: rotate(-45deg);
}
.toggleBox.cke_widget_element .toggleBox-title {
    box-shadow: unset;
}
.toggleBox h3 {
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4c5459;
}
.toggleBox .toggleBox-content {
    padding: 5px 0;
    font-size: 20px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #797f82;
    display: none;
}

.toggleBox .toggleBox-content p {
    margin: 0 0 10px;
}