/*

Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements.  See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License.  You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

*/
.info-container {
    color: rgb(165, 42, 42);
    justify-items: center;
    border: 2px dashed rgba(236, 198, 48, 0.7);
    transition: .5s ease-out;
}
.info-overlay-item {
    background: rgba(255, 213, 70);
}
.info-cursor {
    cursor: pointer;
}
.info-cursor-none {
    cursor: text;
}

/* used by wait-spinner */
.hidden {
    display: none;
}

/* used by ofbiz-form on CSS Grid Layout */
.ofbiz-form {
    display: grid;
    grid-auto-flow: row;
    grid-gap: .4em;
    padding: 1em;
}
.with-left-right-columns {
    grid-template-columns: [left-col-label] minmax(150px, auto) 1fr [right-col-label] minmax(150px, auto) 1fr;
}
.ofbiz-form label {
    text-align: right;
    padding: 0.4em;
    font-weight: bold;
}
.ofbiz-form > label {
    grid-row: auto;
}
.ofbiz-form > label.left-column,
.ofbiz-form > fieldset.left-column  {
    grid-column: left-col-label;
}
.ofbiz-form > label.right-column {
    grid-column: right-col-label;
}
.ofbiz-form > input,
.ofbiz-form > select,
.ofbiz-form > textarea {
    grid-row: auto;
    padding: .1em;
    border: 1px solid lightgray;
}
.ofbiz-form .full-span-field {
    grid-column: 2 / span 3;
}
.ofbiz-form .full-width-center {
    grid-column: 1 / span 4;
    justify-self: center;
}

/* Started and added by Parag Kulkarni on 22nd July 2023 to add text colors to Status Id of Quotations in Procurement section  */
.basic-table .Green { /*Style use by alt-row-style on list*/
    color: #008000;
}

.basic-table .Blue {
    /*Style use by alt-row-style on list*/
    color: #0000FF;
}

.basic-table .Maroon {
  /*Style use by alt-row-style on list*/
  color: #800000;
}

/* Ended by Parag Kulkarni on 22nd July 2023 to add text colors to Status Id of Quotations in Procurement section  */

