﻿/* This stylesheet is for the fields within the Docks that consist of a label and text, NOT the input fields that consist of input boxes, comboboxes, etc. (Telerik controls) */

div.csFieldSetTextBox.AutoArrange {
    display: flex;
    flex-direction: column;
}

div.csFieldSetTextArea.AutoArrange {
    display: flex;
    flex-direction: column;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .divContInnerDock {
        grid-template-columns: repeat(3, 1fr);
    }

    div.csFieldSetTextBox.AutoArrange {
        width: 95%;
        max-width: 395px;
    }
}