/**
 * CSS editor.
 *
 * @package fwdmsp
 * @since fwdmsp 1.0
 */

 /* General. */
.fwdsc-main-header {
    font-family: Roboto !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 38px !important;
    text-transform: capitalize !important;
    margin: 20px 0 10px;
    color: #333 !important;
}


/* Codemirror height. */
.fwdsc .CodeMirror.cm-s-default{
	height: calc(100vh - 275px);
}


/* Submit buttons. */
#fwdsc_buttons {
    position: fixed !important;
    border-radius: 8px;
    background: #F0F2F4;
    box-shadow: 0px 4px 17px 0px rgba(80, 75, 117, 0.27);
    z-index: 9999 !important;
    right: 20px !important;
    bottom: 30px !important;
    padding: 10px !important;
    background: #FFF !important;
}

/* Smaller screens. */
@media screen and (max-width: 782px) {

    #fwdsc_buttons{
        right: 10px !important;
    }
}