/**
 * This software is part of the OFORK project, https://ofork.de/
 *  Modified version of the work: Copyright (C) 2010-2021 OFORK, https://ofork.de/
 *  based on the original work of:
 *  Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
 *  --
 * @project OTRS (http://www.otrs.org) <http://www.otrs.org> - Agent Frontend
 * @copyright OTRS AG
 * @license     AGPL (http://www.gnu.org/licenses/agpl.txt)
 */

/**
 * @package     Skin "Default"
 * @section     Forms
 */

@media screen,projection,tv,handheld {

/**
 * @subsection  Input focus
 * @note        Does not work in IE6, only partially in IE7 (no focus)
 */

input[type=text],
input[type=password],
input[type=email],
textarea,
select[multiple=multiple] {
    border: 1px solid #C9C9C9;
    border-top-color: #C0C0C0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* Opera 10.5 has per default a grey background */
    background-color: #FFF;
    -webkit-box-shadow: inset 1px 1px 3px #eee, inset -1px -1px 3px #eee;
    box-shadow: inset 1px 1px 3px #eee, inset -1px -1px 3px #eee;
    border-radius: 3px;
}

select[multiple=multiple] {
    min-width: 300px;
    padding: 3px;
    box-shadow: inset 1px 1px 3px #eee, inset -1px -1px 3px #eee;
}

.DataTable select[multiple=multiple] {
    min-width: 0px;
}

select[multiple=multiple] option {
    padding: 2px;
}

select[multiple=multiple] option:nth-child(odd) {
    background-color: #f9f9f9;
}

input#Subject {
    font-size: 13px;
    padding: 5px;
    font-weight: bold;
}

input[type=text],
input[type=password],
input[type=email],
textarea {
    padding: 3px;
    font-size: 12px;
    color: #333;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
textarea:focus {
    border-color: #777;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #555;
    transition: color ease 0.3s;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #555;
   transition: color ease 0.3s;
   opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #555;
   transition: color ease 0.3s;
   opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #555;
   transition: color ease 0.3s;
}

::-ms-input-placeholder { /* Microsoft Edge */
   color: #555;
   transition: color ease 0.3s;
}

:focus::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #ccc;
}

:focus:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #ccc;
   opacity: 1;
}

:focus::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #ccc;
   opacity: 1;
}

:focus:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #ccc;
}

:focus::-ms-input-placeholder { /* Microsoft Edge */
   color: #ccc;
}

/**
 * @subsection  Textarea
 * @note        Fixed font needed in textareas because otherwise the line wrapping is incorrect.
 */
textarea {
    font-family: monospace,fixed;
}


/**
 * @subsection  Input Readonly
 */
input[type=text][readonly],
input[type=password][readonly],
input[type=email][readonly],
textarea[readonly] {
    background-color: #DDD;
}

/**
 * @subsection  Buttons
 */
button.Primary {
    font-weight: bold;
    background-color: #d9f8ea;
    border: 1px solid #656566;
    border-radius: 3px;
}

a.CertificateRelationAdd,
button.CertificateRelationAdd,
a.CertificateRead,
button.Add,
a.Add,
button.Remove,
a.Remove,
button.TrashCan,
a.TrashCan,
a.Pencil,
button.Reset,
a.Reset {
    height: 16px;
    width: 16px;
    padding: 1px;
    margin-top: 0;
    margin-bottom: 1px;
    border-style: none;
    text-indent: -9999px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

button.Add,
a.Add {
    background: url(../img/filter_add.png) no-repeat center;
}

button.Add:hover,
button.Add:focus,
a.Add:hover,
a.Add:focus {
    background: url(../img/filter_add_hover.png) no-repeat center;
}

button.CertificateRelationAdd,
a.CertificateRelationAdd {
    background: url(../img/icons/certificate-plus.png) no-repeat center;
}

a.CertificateRead {
    background: url(../img/icons/certificate.png) no-repeat center;
}

button.Remove,
a.Remove {
    background: url(../img/filter_remove.png) no-repeat center;
}

button.Remove:hover,
button.Remove:focus,
a.Remove:hover,
a.Remove:focus {
    background: url(../img/filter_remove_hover.png) no-repeat center;
}

a.TrashCan i.fa-trash-o,
a.Pencil i.fa-edit {
    text-indent: 0px;
    position: absolute;
    left: 0px;
    top: 4px;
    z-index: 998;
}

button.Reset,
a.Reset{
    height: 22px;
    width: 22px;
    padding: 3px;
}

.AddButton,
.RemoveButton {
    color: #000;
    font-size: 14px;
    vertical-align: middle;
}

/**
 * @note    Push-lookalike for active state
 */
button.Add:active,
a.Add:active,
button.Remove:active,
a.Remove:active,
button.TrashCan:active,
a.TrashCan:active,
button.Reset:active {
    margin-top: 1px;
    margin-bottom: 0;
}


.GetAllAJAX {
    width: 16px;
    height: 16px;
    margin-left: 3px;
    display: inline-block;
    color: #333;
}

.GetAllAJAX span {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.RTL .GetAllAJAX {
    margin: 0 3px 0 0;
}

.AdditionlFieldIcon {
    width: 16px;
    height: 16px;
    margin-left: 3px;
    display: inline-block;
    color: #333;
}

.AdditionlFieldIcon span {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.RTL .AdditionlFieldIcon {
    margin: 0 3px 0 0;
}

/**
 * @subsection    GenericAgent ClearSelect
 */

.GenericAgentClearSelect {
    width: 16px;
    height: 16px;
    margin-left: 3px;
    color: #333;
}

.GenericAgentClearSelect span {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

/**
 * @subsection    Tree selection icon and overlay for select boxes
 */

.ShowTreeSelection {
    width: 16px;
    height: 16px;
    margin-left: 3px;
    display: none;
    color: #333;
}

.ShowTreeSelection span {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.ShowTreeSelection:focus {
    color: #80d2a1;
}

.Field .ShowTreeSelection, .WidgetSettingsForm .ShowTreeSelection {
    display: inline-block;
}

.WidgetSettingsForm .ShowTreeSelection {
    position: relative;
    top: -4px;
}

#TreeContainer #TreeSearch {
    position: relative;
}

#TreeContainer #TreeSearch span {
    color: #AAAAAA;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    height: 12px;
    position: absolute;
    right: 9px;
    top: 4px;
    width: 16px;
}

#TreeContainer #TreeSearch input {
    display: block;
    margin: 10px 12px 0px 12px;
    width: 92%;
}

#JSTree {
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    height: 72%;
    margin: 10px 12px;
    -moz-box-shadow: inset 0px 0px 6px #ccc;
    -webkit-box-shadow: inset 0px 0px 6px #ccc;
    box-shadow: inset 0px 0px 6px #ccc;
    overflow: auto;
    padding: 0px 10px 10px 10px;
}

#JSTree.InOverlay {
    margin: 5px 5px 5px 0px;
    width: 85%;
    float: left;
}

#JSTree .Disabled > a {
    color: #aaa;
    font-style: italic;
}

#JSTree .jstree-search {
    color: #E07006;
}

#JSTree .jstree-search.jstree-clicked {
    color: #000;
}

#JSTree .jstree-clicked {
    background: #f3960d;
    background: -moz-linear-gradient(top,  #ffe7bd 0%, #fbba49 20%, #f6ad3e 51%, #f3960d 51%, #e98207 95%, #e07006 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffe7bd), color-stop(20%,#fbba49), color-stop(51%,#f6ad3e), color-stop(51%,#f3960d), color-stop(95%,#e98207), color-stop(100%,#e07006));
    background: -webkit-linear-gradient(top,  #ffe7bd 0%,#fbba49 20%,#f6ad3e 51%,#f3960d 51%,#e98207 95%,#e07006 100%);
    background: -o-linear-gradient(top,  #ffe7bd 0%,#fbba49 20%,#f6ad3e 51%,#f3960d 51%,#e98207 95%,#e07006 100%);
    background: -ms-linear-gradient(top,  #ffe7bd 0%,#fbba49 20%,#f6ad3e 51%,#f3960d 51%,#e98207 95%,#e07006 100%);
    background: linear-gradient(to bottom,  #ffe7bd 0%,#fbba49 20%,#f6ad3e 51%,#f3960d 51%,#e98207 95%,#e07006 100%);
    border-color: #f3960d;
    padding: 0px 3px;
}

#JSTree .jstree-hovered {
    background-color: #eee;
    border-color: #ddd;
}

#JSTree a:focus {
    background-color: #eee;
    border-color: #ddd;
}

#SubmitTree {
    display: block;
    width: 120px;
    margin: 0px auto;
}

.RTL .ShowTreeSelection {
    margin: 0 3px 0 0;
}

.OverlayTreeSelector {
    width: 400px;
    height: 300px;
}

/**
 * @subsection  Form
 */

form fieldset {
    display: block;
    border: none;
}

.TableLikeOverflow {
    overflow: auto;
    line-height: initial;
}

fieldset > legend {
    display: block;
    width: 100%;
}

.WidgetSettingsForm fieldset legend {
    padding-top: 10px;
}

fieldset > legend > span {
    border-bottom: 1px solid #ddd;
    display: block;
    font-weight: bold;
    padding: 5px 0px 5px 30%;
    text-indent: 8px;
    margin-bottom: 5px;
}

form fieldset > p.NoValue {
    padding: 5px 0px 5px 30%;
    text-indent: 8px;
}

.FieldExplanation {
    color: #888;
    margin: 5px 0;
}

.SidebarColumn .FieldExplanation.Error {
    border: 1px solid #F03432;
    color: #F03432;
    line-height: 150%;
    margin: 7px 0px;
    padding: 7px 10px;
}

form label.Mandatory {
    color: black !important;
}

form label.Mandatory span.Marker {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    top: 0.35em;
    line-height: 1px;
    right: 2px;
    left: auto;
}

.RTL form label.Mandatory span.Marker {
    left: 2px;
    right: auto;
}

form label.LabelError {
    color: #ff505e !important;
}

.CustomerContainerPopUp,
.CcCustomerContainerPopUp,
.BccCustomerContainerPopUp {
    background-color: #F2F2F2;
    border: 1px solid #CCCCCC;
    -moz-box-shadow: inset 1px 1px 5px #ccc;
    -webkit-box-shadow: inset 1px 1px 5px #ccc;
    box-shadow: inset 1px 1px 5px #ccc;
    padding: 5px 7px 10px 6px;
    width: 74%;
    position: relative;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: 0%;
}

.CustomerContainerPopUp > div,
.CcCustomerContainerPopUp > div,
.BccCustomerContainerPopUp > div {
    margin-top: 5px;
}

.CustomerContainerPopUp .CustomerTicketText,
.CcCustomerContainerPopUp .CustomerTicketText,
.BccCustomerContainerPopUp .CustomerTicketText  {
    width: 89%;
    margin-left: 7px;
}

.CustomerContainerPopUp .CustomerTicketText {
    transition: background-color 1s ease, border 1s ease;
}

.CustomerContainerPopUp .CustomerTicketText.MainCustomer {
    background-color: #F7ECC3;
    border: 1px solid #E8CC8B;
}

.CustomerContainerPopUp .CustomerTicketText.Radio {
    width: 84%;
    margin-left: 0px;
}

.CustomerContainerPopUp .BoxLabel,
.CcCustomerContainerPopUp .BoxLabel,
.BccCustomerContainerPopUp .BoxLabel {
    background-color: #CCCCCC;
    font-size: 11px;
    right: 100%;
    top: 10px;
    padding: 0 5px;
    position: absolute;
    text-align: center;
    text-shadow: 1px 1px 1px #FFFFFF;
    min-width: 20px;
    color: #555;
}

.CustomerContainer,
.CcCustomerContainer,
.BccCustomerContainer {
    background-color: #F2F2F2;
    border: 1px solid #CCCCCC;
    -moz-box-shadow: inset 1px 1px 5px #ccc;
    -webkit-box-shadow: inset 1px 1px 5px #ccc;
    box-shadow: inset 1px 1px 5px #ccc;
    padding: 5px 7px 10px 6px;
    width: 74%;
    position: relative;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: 13.5%;
}

.CustomerContainer > div,
.CcCustomerContainer > div,
.BccCustomerContainer > div {
    margin-top: 5px;
}

.CustomerContainer .CustomerTicketText,
.CcCustomerContainer .CustomerTicketText,
.BccCustomerContainer .CustomerTicketText  {
    width: 89%;
    margin-left: 7px;
}

.CustomerContainer .CustomerTicketText {
    transition: background-color 1s ease, border 1s ease;
}

.CustomerContainer .CustomerTicketText.MainCustomer {
    background-color: #F7ECC3;
    border: 1px solid #E8CC8B;
}

.CustomerContainer .CustomerTicketText.Radio {
    width: 84%;
    margin-left: 0px;
}

.CustomerContainer .BoxLabel,
.CcCustomerContainer .BoxLabel,
.BccCustomerContainer .BoxLabel {
    background-color: #CCCCCC;
    font-size: 11px;
    right: 100%;
    top: 10px;
    padding: 0 5px;
    position: absolute;
    text-align: center;
    text-shadow: 1px 1px 1px #FFFFFF;
    min-width: 20px;
    color: #555;
}

#EmailRecipientsList span,
#EmailRecipientsList a.Collapse {
    display: none;
}

#EmailRecipientsList.Expanded span,
#EmailRecipientsList.Expanded a.Expand {
    display: inline;
}

/**
 * @note        Give the user a hint about linked label elements (they are clickable and
 *                  give focus to the linked element.
 */

form label[for] {
    cursor: pointer;
}

form input.Error,
form textarea.Error,
form input.Error:focus,
form textarea.Error:focus {
    border-color: #ff505e;
}

/*
 * This will be displayed by Core.UI.Tooltips
 */
div.TooltipErrorMessage {
    display: none;
}

/**
 * @subsection  TableLike
 * @description Provides a table-like, aligned label-value structure
 */

fieldset.TableLike > label,
fieldset.TableLike > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 14%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 3%;
    margin-right: 0.8%;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.InstallerDBOFORK > label,
fieldset.InstallerDBOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 12%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 306px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
    margin-right: 8px;
}

fieldset.InstallerSystemOFORK > label,
fieldset.InstallerSystemOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 12%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 306px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
    margin-right: 8px;
}

fieldset.InstallerConfigureEmailOFORK > label,
fieldset.InstallerConfigureEmailOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 20%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 100px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
    margin-right: 8px;
}

fieldset.InstallerFinishOFORK > label,
fieldset.InstallerFinishOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 12%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 290px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentDashboardCommonAppointmentsOFORK > label,
fieldset.AgentDashboardCommonAppointmentsOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 35%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}


fieldset.AgentTicketBulkOFORK > label,
fieldset.AgentTicketBulkOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 35%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentPreferencesOFORK > label,
fieldset.AgentPreferencesOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 306px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
}

fieldset.AgentDashboardEventCalendarInforamtionOFORK > label,
fieldset.AgentDashboardEventCalendarInforamtionOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 35%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 30px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
}

fieldset.AdminProcessManagementTransitionOFORK > label,
fieldset.AdminProcessManagementTransitionOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 306px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminProcessManagementTransitionActionOFORK > label,
fieldset.AdminProcessManagementTransitionActionOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 360px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminProcessManagementActivityDialogOFORK > label,
fieldset.AdminProcessManagementActivityDialogOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 360px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentTicketSearchOFORK > label,
fieldset.AgentTicketSearchOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 107px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.SmallLabelOFORK > label,
fieldset.SmallLabelOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentTicketComposeOFORK > label,
fieldset.AgentTicketComposeOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.SmallLinkObjectOFORK > label,
fieldset.SmallLinkObjectOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 358px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
    margin-right: 7px;
}

fieldset.AgentTicketMovePopUpOFORK > label,
fieldset.AgentTicketMovePopUpOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 12%;
    text-align: right;
    color: #656566;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 106px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
    margin-right: 8px;
}

fieldset.WebServiceAddOFORK > label,
fieldset.WebServiceAddOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.CustomerUserInformationOFORK > label,
fieldset.CustomerUserInformationOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminCustomerUserOFORK > label,
fieldset.AdminCustomerUserOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminAppointmentNotificationEventOFORK > label,
fieldset.AdminAppointmentNotificationEventOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentDashboardCustomerIDStatusOFORK > label,
fieldset.AgentDashboardCustomerIDStatusOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 30%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.WebServiceImportOFORK > label,
fieldset.WebServiceImportOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 25%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.RequestFormEditOFORK > label,
fieldset.RequestFormEditOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 297px;
    margin-right: 4px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldTextLeftOFORK > label,
fieldset.AdminDynamicFieldTextLeftOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldTextRightOFORK > label,
fieldset.AdminDynamicFieldTextRightOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldCheckGeneralLeftOFORK > label,
fieldset.AdminDynamicFieldCheckGeneralLeftOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldCheckGeneralRightOFORK > label,
fieldset.AdminDynamicFieldCheckGeneralRightOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldCheckDefaultOFORK > label,
fieldset.AdminDynamicFieldCheckDefaultOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldDateLeftOFORK > label,
fieldset.AdminDynamicFieldDateLeftOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldDateRightOFORK > label,
fieldset.AdminDynamicFieldDateRightOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldDateSettingsOFORK > label,
fieldset.AdminDynamicFieldDateSettingsOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldDropdownLeftOFORK > label,
fieldset.AdminDynamicFieldDropdownLeftOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldDropdownRightOFORK > label,
fieldset.AdminDynamicFieldDropdownRightOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldMultiselectLeftOFORK > label,
fieldset.AdminDynamicFieldMultiselectLeftOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldMultiselectRightOFORK > label,
fieldset.AdminDynamicFieldMultiselectRightOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.FixedLabelSmallAdminSelectBoxOFORK > label,
fieldset.FixedLabelSmallAdminSelectBoxOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
	margin-left: 5px;
}

fieldset.AdminPrioritiesOFORK > label,
fieldset.AdminPrioritiesOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 312px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminDynamicFieldTextRegExOFORK > label,
fieldset.AdminDynamicFieldTextRegExOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 30%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.RequestFormHeadlineOFORK > label,
fieldset.RequestFormHeadlineOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 299px;
    margin-right: 3px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.RequestFormHeadlineAddOFORK > label,
fieldset.RequestFormHeadlineAddOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 292px;
    margin-right: 3px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.RequestFormOverviewOFORK > label,
fieldset.RequestFormOverviewOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 292px;
    margin-right: 3px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminRequestFormHeadlineOFORK > label,
fieldset.AdminRequestFormHeadlineOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 292px;
    margin-right: 3px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminRequestInternalListAddOFORK > label,
fieldset.AdminRequestInternalListAddOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 292px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}


fieldset.AdminRequestInternalListFieldAddOFORK > label,
fieldset.AdminRequestInternalListFieldAddOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 230px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}


fieldset.AgentTicketRequestInternalOFORK > label,
fieldset.AgentTicketRequestInternalOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 230px;
    margin-right: 9px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.TicketSettingsDialogueOFORK > label,
fieldset.TicketSettingsDialogueOFORK > .Row > label {
   display: block;
    float: left;
    line-height: 1.7em;
    width: 14%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    padding-right: 0px;
	margin-left: 0.5%;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.FormDraftAddDialogOFORK > label,
fieldset.FormDraftAddDialogOFORK > .Row > label {
   display: block;
    float: left;
    line-height: 1.7em;
    width: 14%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    padding-right: 0px;
	margin-left: 0;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

.CustomerContainerAgentTicketRequestOFORK,
.CcCustomerContainerAgentTicketRequestOFORK,
.BccCustomerContainerAgentTicketRequestOFORK {
    background-color: #F2F2F2;
    border: 1px solid #CCCCCC;
    -moz-box-shadow: inset 1px 1px 5px #ccc;
    -webkit-box-shadow: inset 1px 1px 5px #ccc;
    box-shadow: inset 1px 1px 5px #ccc;
    padding: 5px 7px 10px 6px;
    width: 74%;
    position: relative;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: 15%;
}

fieldset.TableLikeOFORKCalendar > label,
fieldset.TableLikeOFORKCalendar > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 3px 1px 2px;
    margin: 2px 5px 15px 25px;
    padding-right: 15px;
}

fieldset.TableLikeOFORKCalendarDateTime > label,
fieldset.TableLikeOFORKCalendarDateTime > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 3px 1px 2px;
    margin: 2px 5px 15px 25px;
    padding-right: 15px;
}

fieldset.TableLikeOFORKCalendarNotification > label,
fieldset.TableLikeOFORKCalendarNotification > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 3px 1px 2px;
    margin: 2px 5px 15px 25px;
    padding-right: 15px;
}

fieldset.TableLikeOFORKCalendarLink > label,
fieldset.TableLikeOFORKCalendarLink > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 3px 1px 2px;
    margin: 2px 5px 15px 25px;
    padding-right: 15px;
}

fieldset.AgentTicketSettingsOFORK > label,
fieldset.AgentTicketSettingsOFORK > .Row > label {
    display: block;
    line-height: 1.7em;
    float: left;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 10px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AdminSupportDataCollectorOFORK > label,
fieldset.AdminSupportDataCollectorOFORK > .Row > label {
    display: block;
    line-height: 1.7em;
    float: left;
    width: 15%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 100px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentSurveyAddOFORK > label,
fieldset.AgentSurveyAddOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 366px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentSurveySettingDialogOFORK > label,
fieldset.AgentSurveySettingDialogOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 40%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1%;
    margin-right: 3%;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentSurveyZoomOFORK > label,
fieldset.AgentSurveyZoomOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 35%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 30px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentSurveyZoomInformationOFORK > label,
fieldset.AgentSurveyZoomInformationOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 35%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentSurveyAddInformationOFORK > label,
fieldset.AgentSurveyAddInformationOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 35%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.AgentStatisticsViewOFORK > label,
fieldset.AgentStatisticsViewOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 35%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 7px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

fieldset.CalendarSettingsDialogOFORK > label,
fieldset.CalendarSettingsDialogOFORK > .Row > label {
    display: block;
    float: left;
    line-height: 1.7em;
    width: 10%;
    text-align: right;
    color: #929292;
    min-height: 17px;
    background-color: #d9f8ea;
    border-radius: 3px;
    padding: 3px 0px 1px 2px;
    margin-left: 1px;
    margin-right: 5px;
    margin-top: 2px;
    margin-bottom: 8px;
    padding-right: 8px;
}

.RTL fieldset.TableLike > label,
.RTL fieldset.TableLike > .Row > label {
    float: right;
    text-align: left;
}

fieldset.TableLike > .Field,
fieldset.TableLike > .Row > .Field {
    line-height: 1.9em;
    margin-left: 5%;
    margin-right: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 0px;
    min-height: 20px;
}

fieldset.TableLike > .Field,
fieldset.TableLike > .Row > .Field {
    line-height: 1.9em;
    margin-left: 17.5%;
    margin-right: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 0px;
    min-height: 20px;
}

fieldset.TableLike > .AgentCustomerSearch,
fieldset.TableLike > .Row > .AgentCustomerSearch {
    line-height: 1.9em;
    margin-left: 10%;
    margin-right: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 0px;
    min-height: 20px;
}

fieldset.TableLike > .AdminAppointmentNotificationEvent,
fieldset.TableLike > .Row > .AdminAppointmentNotificationEvent {
    line-height: 1.9em;
    margin-left: 17%;
    margin-right: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 0px;
    min-height: 20px;
}

.RTL fieldset.TableLike > .Field,
.RTL fieldset.TableLike > .Row > .Field {
    margin-left: 0;
    margin-right: 30%;
    padding-left: 0;
    padding-right: 10px;
}

fieldset.TableLike select {
    margin-top: 3px;
}

/**
 * @note     Also make labels grey which occur inside of a field,
 *          for example for complex input elements.
 */
fieldset.TableLike > .Field label,
fieldset.TableLike > .Row > .Field label {
    color: #929292;
}

fieldset.TableLike > .Field > select,
fieldset.TableLike > .Row > .Field > select,
fieldset.TableLike > .Field > input,
fieldset.TableLike > .Row > .Field > input {
    max-width: 100%;
}

/**
 * @note    The RichText field needs to float, otherwise it breaks
 *          in small screens.
 *          Additionally we have a generic FloatingField class,
 *          RichTextField is for backwards compatibility.
 */
fieldset.TableLike > .Row > .RichTextField,
fieldset.TableLike > .FloatingField,
fieldset.TableLike > .Row > .FloatingField {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 0;
    float: left;
}

fieldset.TableLike > .RichTextField {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 18%;
    margin-right: 0;
}

body.Popup fieldset.TableLike > .Row > .RichTextField,
body.Popup fieldset.TableLike > .FloatingField,
body.Popup fieldset.TableLike > .Row > .FloatingField {
    margin: 7px 7px 0px 7px;
}

body.Popup fieldset.TableLike > .RichTextField {
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 0px;
    margin-left: 28%;
    margin-right: 14%;
}

body.Popup fieldset.TableLike > .AgentTicketNote {
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 0px;
    margin-left: 21%;
    margin-right: 14%;
    margin-bottom: 10px;
}

body.Popup fieldset.TableLike > .AgentTicketForward {
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 0px;
    margin-left: 20.5%;
    margin-right: 14%;
}

body.Popup fieldset.TableLike > .AgentTicketEmailOutbound {
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 0px;
    margin-left: 21%;
    margin-right: 14%;
}

body.Popup fieldset.TableLike > .AgentTicketMerge {
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 0px;
    margin-left: 21%;
    margin-right: 14%;
}

body.Popup fieldset.TableLike > .AgentTicketBounce {
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 0px;
    margin-left: 21%;
    margin-right: 14%;
}

body.Popup fieldset.TableLike > .AgentTicketCompose {
    padding-top: 7px;
    padding-left: 17px;
    padding-right: 0px;
    margin-left: 21%;
    margin-right: 14%;
}

.RTL fieldset.TableLike > .Row > .RichTextField,
.RTL fieldset.TableLike > .FloatingField,
.RTL fieldset.TableLike > .Row > .FloatingField {
    padding-left: 0;
    padding-right: 10px;
    float: right;
}

.RTL fieldset.TableLike > .RichTextField {
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 30%;
    margin-left: 0;
}

body.RealPopup.RTL fieldset.TableLike > .Row > .RichTextField,
body.RealPopup.RTL fieldset.TableLike > .FloatingField,
body.RealPopup.RTL fieldset.TableLike > .Row > .FloatingField {
    margin: 7px 7px 0px 7px;
}

body.RealPopup.RTL fieldset.TableLike > .RichTextField {
    padding-top: 7px;
    padding-right: 17px;
    padding-left: 0px;
    margin-right: 170px;
    margin-left: 0;
}

fieldset.TableLike > .Value,
fieldset.TableLike > .Row > .Value {
    margin-left: 30%;
    padding: 5px 0 3px 8px;
    line-height: 1.9em;
}

fieldset.TableLike > .AgentStatsAdd,
fieldset.TableLike > .Row > .AgentStatsAdd {
    margin-left: 10%;
    padding: 5px 0 3px 8px;
    line-height: 1.9em;
}


fieldset.TableLike > .AgentStatsEdit,
fieldset.TableLike > .Row > .AgentStatsEdit {
    margin-left: 17%;
    padding: 5px 0 3px 8px;
    line-height: 1.9em;
}

fieldset.TableLike > .AgentStatsView,
fieldset.TableLike > .Row > .AgentStatsView {
    margin-left: 10%;
    padding: 5px 0 3px 8px;
    line-height: 1.9em;
}

fieldset.TableLike > .AdminDeinstall,
fieldset.TableLike > .Row > .AdminDeinstall {
    margin-left: 10%;
    padding: 5px 0 3px 8px;
    line-height: 1.9em;
}

fieldset.TableLike > .AdminPackageInfo,
fieldset.TableLike > .Row > .AdminPackageInfo {
    margin-left: 10%;
    padding: 5px 0 3px 8px;
    line-height: 1.9em;
}
.RTL fieldset.TableLike > .Value,
.RTL fieldset.TableLike > .Row > .Value {
    margin: 0 30% 0 0;
    padding: 5px 8px 3px 0;
}

fieldset.TableLike > .Value img,
fieldset.TableLike > .Row > .Value img {
    vertical-align: top;
}

/**
 * @note        FixedLabel - this additional class for TableLike
 *              makes the labels have a fixed size
 */
fieldset.TableLike.FixedLabel > label,
fieldset.TableLike.FixedLabel > .Row > label {
    width: 170px;
}

fieldset.TableLike.FixedLabel > .Field,
fieldset.TableLike.FixedLabel > .Row > .Field,
fieldset.TableLike.FixedLabel > .Value,
fieldset.TableLike.FixedLabel > .Row > .Value {
    margin-left: 21%;
    margin-right: 0;
    padding-left: 17px;
    padding-right: 0;
}

fieldset.TableLike.FixedLabel > .AgentTicketActionCommonOFORK,
fieldset.TableLike.FixedLabel > .Row > .AgentTicketActionCommonOFORK,
fieldset.TableLike.FixedLabel > .Value,
fieldset.TableLike.FixedLabel > .Row > .Value {
    margin-left: 10%;
    margin-right: 0;
    padding-left: 17px;
    padding-right: 0;
}

fieldset.TableLike.FixedLabel > .AgentTicketActionCommonAttachment,
fieldset.TableLike.FixedLabel > .Row > .AgentTicketActionCommonAttachment,
fieldset.TableLike.FixedLabel > .Value,
fieldset.TableLike.FixedLabel > .Row > .Value {
    margin-left: 28%;
    margin-right: 0;
    padding-left: 17px;
    padding-right: 0;
}

fieldset.TableLike.FixedLabel > .AdminEmailOFORK,
fieldset.TableLike.FixedLabel > .Row > .AdminEmailOFORK,
fieldset.TableLike.FixedLabel > .Value,
fieldset.TableLike.FixedLabel > .Row > .Value {
    margin-left: 0;
    margin-right: 0;
    padding-left: 17px;
    padding-right: 0;
}

.RTL fieldset.TableLike.FixedLabel > .Field,
.RTL fieldset.TableLike.FixedLabel > .Row > .Field,
.RTL fieldset.TableLike.FixedLabel > .Value,
.RTL fieldset.TableLike.FixedLabel > .Row > .Value {
    margin-left: 0;
    margin-right: 170px;
    padding-left: 0;
    padding-right: 17px;
}

/**
 * @note        FixedLabelSmall - this additional class for TableLike
 *              makes the labels have a small fixed size
 */
fieldset.TableLike.FixedLabelSmall > label,
fieldset.TableLike.FixedLabelSmall > .Row > label {
    width: 100px;
}

fieldset.AgentComProtOFORK.FixedLabelSmall > label,
fieldset.AgentComProtOFORK.FixedLabelSmall > .Row > label {
    width: 25%;
}

fieldset.AgentStatisticsViewLabelOFORK.FixedLabelSmall > label,
fieldset.AgentStatisticsViewLabelOFORK.FixedLabelSmall > .Row > label {
    width: 120px;
}

fieldset.CalendarSettingsDialogWidthOFORK.FixedLabelSmall > label,
fieldset.CalendarSettingsDialogWidthOFORK.FixedLabelSmall > .Row > label {
    width: 80px;
}

fieldset.TableLike.FixedLabelSmall > .Field,
fieldset.TableLike.FixedLabelSmall > .Row > .Field,
fieldset.TableLike.FixedLabelSmall > .Value,
fieldset.TableLike.FixedLabelSmall > .Row > .Value {
    margin-left: 120px;
    margin-right: 1px;
    word-wrap: break-word;
}


fieldset.TableLike.FixedLabelSmall > .AgentTicketProcessOFORK,
fieldset.TableLike.FixedLabelSmall > .Row > .AgentTicketProcessOFORK,
fieldset.TableLike.FixedLabelSmall > .Value,
fieldset.TableLike.FixedLabelSmall > .Row > .Value {
    margin-right: 1px;
    word-wrap: break-word;
}

fieldset.TableLike.FixedLabelSmall > .AgentTicketMenuSettingsOFORK,
fieldset.TableLike.FixedLabelSmall > .Row > .AgentTicketMenuSettingsOFORK,
fieldset.TableLike.FixedLabelSmall > .Value,
fieldset.TableLike.FixedLabelSmall > .Row > .Value {
    margin-left: 105px;
    margin-right: 1px;
    word-wrap: break-word;
}

fieldset.TableLike.AdminSQLBoxOFORK > .Field,
fieldset.TableLike.AdminSQLBoxOFORK > .Row > .Field,
fieldset.TableLike.AdminSQLBoxOFORK > .Value,
fieldset.TableLike.AdminSQLBoxOFORK > .Row > .Value {
    margin-left: 7%;
    margin-right: 1px;
    word-wrap: break-word;
}

.RTL fieldset.TableLike.FixedLabelSmall > .Field,
.RTL fieldset.TableLike.FixedLabelSmall > .Row > .Field,
.RTL fieldset.TableLike.FixedLabelSmall > .Value,
.RTL fieldset.TableLike.FixedLabelSmall > .Row > .Value {
    margin-left: 0;
    margin-right: 100px;
}

fieldset.TableLike.FixedLabelSmall > .FixedValueSmall,
fieldset.TableLike.FixedLabelSmall > .Row > .FixedValueSmall {
    width: 143px;
}
fieldset.TableLike.FixedLabelSmall > p.FixedValueSmall > em.Error {
    display: block;
    font-size: 11px;
    margin-top: 3px;
}

fieldset.TableLike.Narrow > label,
fieldset.TableLike.Narrow > .Row > label,
fieldset.TableLike.Narrow > .Value,
fieldset.TableLike.Narrow > .Row > .Value {
    line-height: 1.3em;
}

fieldset.TableLike.Narrow > label,
fieldset.TableLike.Narrow > .Row > label,
fieldset.TableLike.Narrow > .Value,
fieldset.TableLike.Narrow > .Row > .Value,
fieldset.TableLike > label,
fieldset.TableLike > .Row > label {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

iframe.Signature {
    border: 1px solid #888;
}

/**
 * @subsection freetext fields
 */

input[type=text].TicketFreeText,
input[type=text].ArticleFreeText {
    width: 75%;
}

input[type=text].TicketFreeKey,
input[type=text].ArticleFreeKey {
    width: 50%;
}

} /* end @media */
