﻿/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input, select {
    max-width: 280px;
}

/* Set width on the form input elements since they're 100% wide by default */
textarea {
    max-width: 900px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

input-group.date {
    width: 150px;
}

#loadingBox {
    position: fixed;
    top: 40%;
    left: 40%;
    background-color: #ffffff;
    width: 20%;
    text-align: center;
    padding: 20px;
    color: #000;
    border-right: dodgerblue 3px solid;
    border-top: dodgerblue 3px solid;
    font-weight: bold;
    font-size: 12pt;
    border-left: dodgerblue 3px solid;
    border-bottom: dodgerblue 3px solid;
    z-index: 2000;
}

.alert-text {
    color: #ff7f27;
}

/**
 * For the correct positioning of the placeholder element, the dnd-list and
 * it's children must have position: relative
 */
.dragdrop ul[dnd-list], .simpleDemo ul[dnd-list] > li {
    position: relative;
}

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
.dragdrop ul[dnd-list] {
    min-height: 42px;
    padding-left: 0px;
}

    /**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
.dragdrop ul[dnd-list] .dndDraggingSource {
    display: none;
}

    /**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
.dragdrop ul[dnd-list] .dndPlaceholder {
    display: block;
    background-color: #ddd;
    color: rgb(62, 68, 76);
    padding: 10px 15px;
    min-height: 42px;
}

.dragdrop ul[dnd-list] .dndDraggingSource {
    display: none;
}

.dragdrop ul[dnd-list] li {
    background-color: rgb(62, 68, 76);
    border-color: rgba(0, 0, 0, 0.6);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    display: block;
    padding: 4px 8px;
    margin: 0 0 3px 0;
    font-size: 11px;
    color: #fff;
}

.dragdrop.panel-body {
    padding: 10px;
}

.parent {
    width: 100%;
    height: 31px;
}

/* FC:2017-07-25 Organize code base */
.parent_V2 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.colLeft_V2 {
    width: 400px;
    max-width: 400px;
    height: auto;
}
/* FC:2017-07-25 End of changes */

.colLeft {
    width: 64%;
    float: left;
}

.colCenter {
    width: 23%;
    float: left;
}

.colRight {
    width: 12%;
    float: left;
}

.custom-dropdown {
    border-color: rgba(0, 0, 0, 0.6);
    background-color: rgb(62, 68, 76);
    color: rgb(200, 200, 200);
}

.bottomspace {
    margin-bottom: 7px;
}

.hightlight-area {
    padding: 4px 7px;
    color: #c8c8c8;
    background-color: #3e444c;
    border-color: rgba(0, 0, 0, 0.6);
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.spanDecoration {
    text-decoration: underline;
}

.fontsize-9 {
    font-size: 9px !important;
}

.ng-invalid-required {
    border-color: #ff0500;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
