/** 23. Toggle
 **************************************************************** **/
div.toggle {
    margin: 10px 0 0;
    position: relative;
    clear: both;
}

div.toggle > label {
    color: #333;
    background: #eee;

    cursor: pointer;
    font-size: 16px;
    font-weight:normal;
    padding: 10px 20px;
    position: relative;
    display: block;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    -webkit-transition: all .10s ease-out;
    -moz-transition: all .10s ease-out;
    -o-transition: all .10s ease-out;
    transition: all .10s ease-out;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.toggle div.toggle-content {
    border: 0;
    display: none;
    background: #fff;
    margin-top: -5px;
    padding: 15px 20px;

    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
}

div.toggle > label:before {
    content: '';
    border: 6px solid transparent;
    border-top-color: inherit;

    position: absolute;
    top: 50%; right: 14px;
    margin-top: -3px;
}

div.toggle > label:hover {
    background: #eee;
}

div.toggle > label + p {
    color: #888;
    height: 25px;
    display: block;
    overflow: hidden;
    padding-left: 10px;
}

div.toggle.active > label:before {
    border: 6px solid transparent;
    border-bottom-color: #333;
    right: 14px; margin-top: -10px;
}

div.toggle.active > label::before {
    border-bottom-color: #78e6f0;
}

.toggle-content li::before {
    color: #008000;
    content: "\f10c";
    font-family: FontAwesome;
    left: 0;
    position: absolute;
    top: 0;
    color: #999;
}

.toggle-content li {
    display: block;
    padding-left: 20px;
    position: relative;
}



