.syntax-tree .checkbox_type {
    max-width: 400px; /* modal svg scaling */
    border-radius: 10px;
    background-color: #f8f7f7;
    border: 1px solid #adadae;
    height: 100%;
    overflow: hidden;
}


.syntax-tree .settings {
    display: flex;
    margin-top: 4px;
}

.syntax-tree .checkboxs {
    /* flex: 0 0 28%; */  /* modal svg scaling */
    border-radius: 10px;
    background-color: #f8f7f7;
    border: 1px solid #adadae;
    display: grid;
    overflow: hidden;
    height: 100%;
}

.syntax-tree .check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px; /* modal svg scaling */
}

.syntax-tree .checkboxs_label {
    width: 270px;
    display: inline-block;
}

.syntax-tree .checkboxs_label_text {
    font-family: Arial;
    font-size: 14px;
}

.syntax-tree .buttons {
    flex: 1;
    text-align: right;
}

.syntax-tree .button {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-family: Arial;
    margin: 2px 2px 5px 2px;
    cursor: pointer;
    transition: 0.4s;
    width: 180px;
    height: 28px;
    vertical-align: middle;
    padding: 0px;
    border-radius: 5px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06);
    background-color: #dddde0;
    border: 1px solid #9e9ea0;
}

.syntax-tree .button:hover {
    background-color: #b3b3b5;
}

.syntax-tree .disabled {
    opacity: 0.6;
    cursor: default;
}

.syntax-tree .noHover {
    pointer-events: none;
}

text .syntax-tree {
    font-family: Arial;
    white-space: pre;
}

p .syntax-tree {
    padding: 0;
    margin: 0;
}

.syntax-tree form {
    padding: 0;
    margin: 0;
    align-content: center;
    justify-content: center;
    vertical-align: middle;
    display: flex;
    transition: 0.4s;
    height: 30px;
    background-color: #efeff1;
}

.syntax-tree label {
    text-align: left;

    /* modal vis scaling + bootstrap override */
    margin-bottom: 0px;
    font-weight: normal; 
}

.syntax-tree .border_bottom {
    border-bottom: 1px solid #ffffff;
}

.syntax-tree .switch {
    position: relative;
    display: inline-block;
    width: 41px;
    height: 20px;
    vertical-align: middle;

}

.syntax-tree .switch input {
    display: none;
}

.syntax-tree .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
    background-color: #eff2f4;
    box-shadow: 0 .15em .25em rgba(0, 0, 0, 0.5) inset, 0 -.5px 0 rgba(255, 255, 255, 0.2) inset;
}

.syntax-tree .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 15px;
    left: 2px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    display: block;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 1px 2px 4px 0 #6e6e6f;
}

.syntax-tree input:checked + .slider {
    background-color: #b3b4b5;
}

.syntax-tree input:focus + .slider {
    box-shadow: 0 0 1px #b3b4b5;
}

.syntax-tree input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

.syntax-tree .slider.round {
    border-radius: 20px;
}

.syntax-tree .slider.round:before {
    border-radius: 50%;
}