/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.CodeMirror {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    height: 70vh !important;
}

div.CodeMirror div.CodeMirror-scroll {
    padding-bottom: 0px !important;
    overflow-x: hidden !important;
}

/*Tabbing Block*/
ul#tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-bottom: 1px solid #c3c4c7;
}

ul#tabs li {
    display: inline-block;
    cursor: pointer;
    border: 1px solid #c3c4c7;
    border-bottom: 0;
    margin-left: 0.5em;
    margin-bottom: 0;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.71428571;
    font-weight: 600;
    background: #dcdcde;
    color: #50575e;
    text-decoration: none;
    white-space: nowrap;
}

ul#tabs li a:focus {
    outline: none;
}

ul#tabs li a {
    color: #222;
    text-decoration: none;
}

ul#tabs li.current {
    border-bottom: 1px solid #f0f0f1;
    background: #f0f0f1;
    color: #000;
    margin-bottom: -1px;
}

ul#tabs li:hover {
    background: #f0f0f1;
    color: #000;
}

.tab-content {
    display: none;
}

.tab-content.current {
    display: block;
}

/*SCSS Editor Block*/
.swp-editor-block {
    margin-top: 15px;
}

.swp-editor-block h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.scss-block-wrap {
    display: flex;
    justify-content: space-between;
}

.scss-block-wrap .scss-block-left {
    width: 70%;
}

.scss-block-wrap .scss-block-right {
    width: 28%;
}

/*Sidebar Block*/
.accordion-container {
    position: relative;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

.accordion-container h3 {
    margin-top: 0;
}

.set {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #dcdcde;
}

.set:not(:last-child) {
    border-bottom: 1px solid #c3c4c7;
}

.set>a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.set>a span.dashicons {
    float: right;
}

.description>a {
    text-decoration: none;
}

.set>a i {
    float: right;
    margin-top: 2px;
}

.set>a:focus {
    box-shadow: none;
    outline: none;
}

.set>a.active,
.set>a:hover {
    background-color: #000;
    color: #fff;
}

.content {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    display: none;
}

.content pre.scss-pre {
    margin: 0;
    overflow-x: auto;
    -moz-tab-size: 4;
    tab-size: 4;
}

.content code {
    color: #111;
    max-height: auto;
    padding: 0;
    background: transparent;
    overflow: visible;
    font-size: 1em;
}

.content p {
    margin: 0 0 10px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}