﻿/* Global */
#formContent .container.first .first-screen, #formContent .container.second .second-screen {
    display: -ms-flexbox;
    display: flex;
}

#formContent .first-screen, #formContent .second-screen {
    display: none;
}

#formContent .container.first .prev, #formContent .container.second .next {
    border-color: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
    cursor: default;
}

.grey-bg {
    background: #dbdbdb;
}

.grey-bg-50 {
    background: rgba(219,219,219,0.5);
}

.border-radius {
    border-radius: 5px;
}

/* Filter Screen */
#formContent #filterContainer #filter {
    width: 100%;
}

#formContent #filterContainer button.k-filter-apply {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    #formContent #filterContainer button.k-filter-apply:hover {
        color: #fff;
        background-color: #218838;
        border-color: #1e7e34;
    }

.btn-default {
    border-color: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
}

.btn-default:hover {
    border-color: #c7cdd5;
    color: #212529;
    background-color: #ced3db;
}

/* Editor Screen */
#formContent .editor-container {
    height: 75vh;
}

    #formContent .editor-container .k-editor {
        max-width: 100%;
        max-height: 100%;
    }