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


/*Developer Red Box*/
.dev-template-name {
    position: fixed;
    bottom: 100px;
    left: 10px;
    background: rgba(255, 0, 0, 0.6);
    color: #fff;
    padding: 2px 4px;
    font-size: 0.8em;
    z-index: 100;
}

/*Developer Red Box*/
.developer.red-label {
    position: absolute;
    top: 0;
    left: 0;
    background: #f00;
    color: #fff;
    padding: 4px 10px;
    font-size: 1rem;
    z-index: 99;
    display: none;
}



/* Spinner */
#gform_wrapper_1 .gform_ajax_spinner {
    margin-left: 20px;
    border: 4px solid rgba(29, 189, 137, 0.3);
    border-left: 4px solid rgba(29, 189, 137, 0.7);
    animation: spinner 1.1s infinite linear;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body.developer-red-lines section {
    border-top: 1px dashed #f00;
    border-bottom: 1px dashed #f00;
}

body.developer-red-lines .container {
    border-left: 1px dashed #f00;
    border-right: 1px dashed #f00;
}

body.developer-red-labels .developer.red-label {
    display: block;
}

body.developer-bootstrap-grid .row>[class*="col-"]>* {
    background: rgba(255, 0, 0, 0.2);
}

body.developer-red-lines .entry-content>.vc_row {
    border-top: 1px dashed #f00;
    /* border-bottom: 1px dashed #f00; */
}