/**
 * Copyright 2024 LÍNEA GRÁFICA E.C.E S.L.
 *
 * @author    Línea Gráfica E.C.E. S.L.
 * @copyright Lineagrafica.es - Línea Gráfica E.C.E. S.L. all rights reserved.
 * @license   https://www.apache.org/licenses/LICENSE-2.0
 *
 * Licensed 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
 *
 * https://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.
 */

#freeshippinginfo{
    color:#fff;
    padding:10px;
    margin-bottom: 10px;
}
.lgborder{
    border-bottom:solid 2px #dddfe0;
}
.lgmessage{
    color: white;
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight:bold;
}
.lgoverflow{
    overflow-x:auto;
}
.lgfloat{
    float:left;
}
.lgclear{
    clear:both;
}
.lgbold{
    font-weight:bold;
}
.toolTip {
  position: relative;
}
.tooltipDesc {
	position: absolute;
    border-style: solid;
    border-color: #00aff0;
	background-color: #FFF;
	color: #000;
	height: 100px;
	width: 280px;
	visibility: hidden;
	opacity: 1;
	border-radius: 5px;
	padding: 7px;
    z-index:99;
    font-weight: normal;
}
.toolTip:hover .tooltipDesc {
  visibility: visible;
  opacity: 1;
}