﻿.cgg-red {
	color: rgb(220, 51, 19);	
}
.cgg-reminder-220 {
	color: rgb(220, 51, 19);	
}
.cgg-reminder-red-small {
	font-size: xx-small; 
	color: rgb(220, 51, 19);	
}
.cgg-font-size-16 {
	font-size: 16pt; 
}
.cgg-font-size-14 {
	font-size: 14pt; 
}
a.cgg-link-no-underline, a.cgg-link-no-underline:hover, a.cgg-link-no-underline:visited {
	text-decoration: none!important;
}

/* Tag */
.cgg-tag {
    background-color: rgb(220, 51, 19);
	color: white;
	font-size: 8pt;
	padding: 2px 6px 2px 6px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
	white-space: nowrap;
}

/* Button Group */
.cgg-btn-group button {
    background-color: #fff;
    border: 1px solid #999;
    color: black;
    padding: 5px 10px;
    cursor: pointer;
    float: left;
}
.cgg-btn-group button:not(:last-child) {
    border-right: none; /* Prevent double borders */
}
/* Clear floats (clearfix hack) */
.cgg-btn-group:after {
    content: "";
    clear: both;
    display: table;
}
/* Add a background color on hover */
.cgg-btn-group button:hover {
    background-color: #000;
	color: white;
}
.cgg-btn-group button:active {
    background-color: rgb(220, 51, 19);
	color: white;
}

/* Tooltip */
.cggtooltip {
    position: relative;
    display: inline-block;
    border-bottom: 0px dotted black;
}
.cggtooltip .cggtooltiptext {
    visibility: hidden;
	min-width: 140px;
	max-width: 200px;
    width: auto;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}
.cggtooltip .cggtooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
.cggtooltip:hover .cggtooltiptext {
    visibility: visible;
    opacity: 1;
}
