@charset "utf-8";
/* Gumpinger Software CSS style */
/*  
  CSS for POPUP window
*/


.panel {
    background-color: #444;
    height: 34px;
    padding: 10px;
}
.panel a#link_pop{
    border: 2px solid #aaa;
    color: #fff;
    display: block;
    float: right;
    margin-right: 10px;
    padding: 5px 10px;
    text-decoration: none;
    text-shadow: 1px 1px #000;

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
a#link_pop:hover {
    border-color: #eee;
}
.overlay {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    cursor: default;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 1;

    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}
.overlay:target {
    visibility: visible;
    opacity: 0.8;
}

/* Pop Up div */
.popup {
    background-color: #fff;
    border: 3px solid #fff;
    display: inline-block;
    left: 50%;
    opacity: 0;
    padding: 15px;
    position: fixed;
    text-align: justify;
    top: 40%;
    visibility: hidden;
    z-index: 10;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;

    -webkit-box-shadow: 0 1px 1px 2px rgba(136, 188, 62, 1) inset;
    -moz-box-shadow: 0 1px 1px 2px rgba(136, 188, 62, 1) inset;
    -ms-box-shadow: 0 1px 1px 2px rgba(136, 188, 62, 1) inset;
    -o-box-shadow: 0 1px 1px 2px rgba(136, 188, 62, 1) inset;
    box-shadow: 0 1px 1px 2px rgba(136, 188, 62, 1) inset;

    -webkit-transition: opacity .5s, top .5s;
    -moz-transition: opacity .5s, top .5s;
    -ms-transition: opacity .5s, top .5s;
    -o-transition: opacity .5s, top .5s;
    transition: opacity .5s, top .5s;
}
.overlay:target+.popup {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.close {
    background-color: rgba(136, 188, 62, 0.8);
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: -15px;
    width: 30px;

    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-size: 24px;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
}
.close:hover {
    background-color: rgba(255, 195, 0, 0.8);
}

/* descendant elements in pop up */
.popup h3 {
    font: 14pt Times, "Times New Roman", Serif;
	font-weight: bold;
}
.popup p, .popup div {
    margin-bottom: 10px;
}
.popup label {
    display: inline-block;
    text-align: left;
    width: 120px;
}
.popup input[type="text"], .popup input[type="password"] {
    border: 1px solid;
    border-color: #999 #ccc #ccc;
    margin: 0;
    padding: 2px;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.popup input[type="text"]:hover, .popup input[type="password"]:hover {
    border-color: #555 #888 #888;
}

/* === Styling contact_synchronization_table Table === */
.popup table.contact_synchronization_table {
	/*Center the table, and put one blank line above and below */
	margin: 1em auto;
	/* Remove spacing between cells */
	border-collapse: collapse;
}

/* Odd rows in contact_synchronization_table tables */
.contact_synchronization_table tr:nth-child(odd) {
	background-color: #ebfeed;
}

/* Even rows in contact_synchronization_table tables */
.contact_synchronization_table tr:nth-child(even) {
	background-color: white;
}

/* row 2 in contact_synchronization_table tables */
.contact_synchronization_table td {
	text-align: center;
}

/* Cells in contact_synchronization_table tables */
.contact_synchronization_table th, 
.contact_synchronization_table td {
	/* Borders around cells */
	border: solid 1px gray; 
	/* Add 2px top and bottom padding, 6px side padding */
	padding: 2px 4px;
}

/* Header in contact_synchronization_table tables */
.contact_synchronization_table th {
	text-align: center;
	background-color: #88BC3E;
	color: black
}

/* Highlight table row in contact_synchronization_table hover */
.contact_synchronization_table tr:hover {
	background-color: #99cc00;
	cursor: default;
}
