/* Theme stylesheet */

/* The four theme vars + the header logo are PER-POD branding. inc/theme.php emits a
   :root{} block into every page's <head> from config, which overrides the defaults
   below (same specificity, later in the cascade). These stay here as the fallback so
   the stylesheet still renders correctly on its own — do NOT hardcode a brand color
   anywhere else; use var(--main_color) etc. */

 /*Classic Organizer Chick
 :root {
  --main_color: #000080;
  --sub_color: #cf2613;
  --text_under_main: white;
  --text_under_sub: white;
  --logo_url: url("../img/real\ bumper.svg");
}
*/
/* Fallbacks for when the stylesheet is loaded without inc/theme.php's override.
   Keep these in step with the defaults in inc/config.php — the neutral product
   palette, not any real company's branding. */
:root {
  --main_color: #1f6f8b;
  --sub_color: #e26d5c;
  --text_under_main: white;
  --text_under_sub: black;
  /* Relative to THIS file (inc/); theme.php's override is relative to the page. */
  --logo_url: url("../img/rooster_logo.png");
}

 /* global */
 .green, .default h1 { background:var(--logo_url) left no-repeat white; min-height: 60px; background-size: auto 120px;}
 #header { background:var(--main_color); text-align:left; position: relative; }
 html { background:var(--main_color);
  overflow-y: scroll;
}
.circleDate {
  border-radius: 50%;
  border: solid var(--main_color);
  background:var(--main_color);
}
.circleDateLink {
  text-decoration:none; color:var(--text_under_main) !important; font-weight:bold;
}

.default .button:hover, .default button:hover, .default input[type="submit"]:hover, #powerTip a:hover .paging span:hover { background:var(--main_color); box-shadow:none; }
.default .button, button, .default input[type="submit"], .paging span, #powerTip a { border-radius:4px; cursor:pointer; border:0; background:var(--sub_color); transition:background .5s; color:var(--text_under_sub) !important; padding:20px 40px; text-decoration:none; font-size:1em; top:-3px; /*box-shadow:0 -10px 10px #9b4772 inset, 0 10px 10px #cd6098 inset;*/ display:inline-block; }

/* header */
#headerContent { overflow:hidden; max-width:1100px; margin:0 auto; }
.headerLinksInvis { display:none;position:absolute;left:0px;padding:10px;z-index: 5;background:var(--main_color);}
.headerLinks a  { color:var(--text_under_main) !important; margin-right:1em; text-decoration:none; font-weight: bold; }
.headerLinks a:hover { color:var(--sub_color) !important; }
.header { text-align:center; }

/* end header */
.cleared {
  text-decoration: none;
  color: black !important;    
}

.people-list input {
  border-radius: 3px;
  border: none;
  padding: 14px;
  background: var(--main_color);
  width: 90%;
  font-size: 14px;
}

/* Stylized tables with sorting */
.styled-table thead tr {
  background-color: var(--main_color);
  color: var(--text_under_main);
  text-align: left;
}
.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid var(--main_color);
}

.styled-table {
  border-collapse: collapse;
  margin: 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead a {
  text-decoration: none;
  color: var(--text_under_main) !important;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
/* end stylized tables */

.clockedin { background-color:var(--sub_color);
  color:black;
  font-weight:bold;
  padding: 5px;
  border-radius: 25px;
  padding-left: 30px
}


.purple{
  color: #c864c8 !important;
}

.orange {
  color: var(--sub_color) !important;
}

/* Icon-only actions — a lone pencil / red X / trash glyph.
   The global button rule above wraps EVERY <button> in the full accent-colored chrome
   (20px 40px padding, rounded, solid background), which is far too heavy for one glyph.
   Use this class to render the icon bare, matching the `class="cleared orange"` icon
   LINKS used elsewhere (accounts.php, clients.php, SingleInvoice.php).
   Keep the element a real <button> when the action submits a form or runs JS — only the
   chrome is wrong, not the semantics. Use the anchor idiom instead when it's a plain
   navigation link.
   !important is required on background: the global `.default button:hover` rule is more
   specific than `.icon-btn:hover`, so it would otherwise repaint on hover. Font size is
   a sensible default — override inline per call site (30–40px is typical). */
.icon-btn {
  background: none !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 4px;
  color: var(--sub_color) !important;
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  top: 0;
}
.icon-btn:hover { background: none !important; filter: brightness(0.85); }

.choice{
  color: black !important;
}

.business{
  color: black !important;
}

.give{
color: #fafa01 !important;
}

.back_orange {
  background-color: var(--sub_color) !important;
}

.back_give{
  background-color: #fafa01 !important;
}



@font-face {
  src: local("Exo");
  font-family: 'Exo',sans-serif;
  font-style: normal;
  font-weight: 600;
}


body { margin:0; background:white; font-family:'Exo',sans-serif; }
#home h1 { font-size:3em; margin-top:0; font-weight:lighter; line-height:1.25em; }
#home h2 { font-size:3.5em; font-weight:100; line-height:1.25em; }
#home h3 { font-size:2em; }
h1 { font-weight:lighter; line-height:1em; padding:3%; margin:0; font-size:3em; color:white; }
h2 { font-weight:100; line-height:1em; font-size:2em; }
h3 { font-size:1.5em; }
section h1:first-of-type, section h2:first-of-type { margin-top:0; }
p { font-size:1.5em; }
tbody th { text-align:right; }
.variablesTable tbody th { text-align:left; }
.inputBig {width: 90%;}
.tBody {display:table;}
.tRow {display:table-row;}
.tRowNoShrink {display:table-row;}
.tCellR {display:table-cell; text-align: right;}
.tCellRNoShrink {display:table-cell; text-align: right;}
.tCellL {display:table-cell; text-align: left; }
/** ordered list **/

ol { padding:0; text-align:left; counter-reset: li; /* Initiate a counter */ list-style: none; /* Remove default numbering */ list-style: decimal; /* Keep using default numbering for IE6/7 */ font: 15px 'trebuchet MS', 'lucida sans'; padding: 0; margin-bottom: 1em; text-shadow: 0 1px 0 rgba(255,255,255,.5); margin-left:2em; }
ol ol { margin:0; padding:0; }
ol > li { position: relative; display: block; padding: 2.25% 2% 4% 4%; margin: 1em 0; color: #444; text-decoration: none; transition: all .3s ease-out; line-height:1.5em; border-bottom:1px dashed rgba(0,0,0,.25); }
ol > li:last-of-type { border-bottom:0; }
ol > li:before { content:counter(li); counter-increment:li; position: absolute; left: -1.3em; top: 2em; margin-top: -1.3em; background:#a7d060; height: 2em; width: 2em; line-height: 2em; font-size:1.5em; text-align: center; font-weight: bold; border-radius: 2em; transition: all .3s ease-out; color:white; }
ol.large { max-width:450px; }
ol.large li { font-size:2em; line-height:1em; padding:0% 2% 7% 8%; }
ol.large li:before { font-size: 1em; top:45%; }
.learn { display:inline-block; width:24px; height:24px; background:url("../img/icons-large.png") -119px -57px; background-size:286px 315px; }
@media (max-resolution:191dpi) { .learn { background-image:url("../img/icons.png"); } }

/** end ordered list **/

/** DATA tables with pretty blue coloring **/

.contentBox{
    /* `auto` shows scrollbars only when content actually overflows, instead of `scroll`'s
       always-on tracks (the stray gray bars). Still contains floats (BFC) like scroll did,
       and wide tables can still scroll horizontally rather than being clipped by the
       overflow:hidden #content wrapper. */
    overflow:auto;
}

/* Table */
		.data-table {
			border-collapse: collapse;
			font-size: 14px;
			min-width: 537px;
            margin: auto; /* centered */
			font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui";
		}

		.data-table th, 
		.data-table td {
			border: 1px solid #e1edff;
            padding: 5px 5px;
            min-width: 8vw;
		}
		.data-table caption {
			margin: 7px;
		}

		/* Table Header */
		.data-table thead th {
			background-color: #508abb;
			color: #FFFFFF;
			border-color: #6ea1cc !important;
			text-transform: uppercase;
		}

		/* Table Body */
		.data-table tbody td {
			color: #353535;
		}
		
		.data-table tbody td {
			text-align: right;
		}
        .data-table tbody td:first-child{
            text-align: center;
         
            
        }
        /*
         *Nth child stuff is MESSING UP MY TABLE
		.data-table tbody tr:nth-child(odd) td {
			background-color: #f4fbff;
		}
		*/ 
		.data-table tbody tr:hover td {
			background-color: #ffffa2;
			border-color: #ffff0f;
		}
        .data-table .darker th {
			background-color: #e5f5ff;
			text-align: center;
		}
        .data-table .darker td {
			background-color: #e5f5ff;
			text-align: center;
            font-weight: bold;
		}
         .data-table .lighter th {
			background-color: white;
			text-align: center;
		}
        .data-table .lighter td {
			background-color: white;
			text-align: center;
            
		}
        .data-table .medium th {
			background-color: lightgrey;
			text-align: center;
		}
        .data-table .medium td {
			background-color: lightgrey;
			text-align: center;
            
		}
        
        
        .data-table .totals th {
			background-color: #9ac0d8;
			text-align: right;
		}
        .data-table .totals td {
			background-color: #9ac0d8;
			text-align: right;
		}
        .data-table .totals td:first-child {
            background-color: #9ac0d8;
			text-align: right;
            font-weight: bold;
		}
        
        
        
        .data-table-vert {
			border-collapse: collapse;
			font-size: 14px;
			min-width: 537px;
            margin: auto; /*centered*/
			font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui";
		}

		.data-table-vert th, 
		.data-table-vert td {
			border: 1px solid #e1edff;
            padding: 5px 5px;
            min-width: 4vw;
		}
		.data-table-vert caption {
			margin: 7px;
		}

		/* Table Header */
		.data-table-vert thead th {
			background-color: #508abb;
			color: #FFFFFF;
			border-color: #6ea1cc !important;
			font-weight:bold;
            text-decoration: underline;
            
		}

		/* Table Body */
		.data-table-vert tbody td {
			color: #353535;
		}
		
		.data-table-vert tbody td {
			text-align: right;
		}
        .data-table-vert tbody td:first-child{
            text-align: left;
            min-width: 15vw;
         
            
        }
        /*
         *Nth child stuff is MESSING UP MY TABLE
		.data-table tbody tr:nth-child(odd) td {
			background-color: #f4fbff;
		}
		*/ 
		.data-table-vert tbody tr:hover td {
			background-color: #ffffa2;
			border-color: #ffff0f;
		}
        .data-table-vert .darker th {
			background-color: #e5f5ff;
			text-align: center;
		}
        .data-table-vert .darker td {
			background-color: #e5f5ff;
			text-align: right;
            font-weight: bold;
		}
        .data-table-vert .totals th {
			background-color: #9ac0d8;
			text-align: right;
		}
        .data-table-vert .totals td {
			background-color: #9ac0d8;
			text-align: right;
            font-weight: bold;
		}
        .data-table-vert .totals td:first-child {
            background-color: #9ac0d8;
			text-align: left;
            font-weight: bold;
		}
        
		

/** end Data Tables with pretty blue coloring **/

/* Coloring for stripes */

.back_choice{
    background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3) !important;
    background-size: 1800% 1800%;

-webkit-animation: rainbow 18s ease infinite;
-z-animation: rainbow 18s ease infinite;
-o-animation: rainbow 18s ease infinite;
  animation: rainbow 18s ease infinite;}

@-webkit-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-moz-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-o-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@keyframes rainbow { 
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}


.back_business{
    background-color: black !important;
}

.back_purple{
    background-color: #c864c8 !important;
}
.back_black{
    background-color: black !important;
}
 
/* calendar */
table.calendar		{ border-left:1px solid #999; }
td.calendar-day	{ min-height:80px; font-size:11px; position:relative; } * html div.calendar-day { height:80px; }
td.calendar-day:hover	{ background:#eceff5; }
td.calendar-day-np	{ background:#eee; min-height:80px; } * html div.calendar-day-np { height:80px; }
td.calendar-day-head { background:#ccc; font-weight:bold; text-align:center; width:80px; padding:5px; border-bottom:1px solid #999; border-top:1px solid #999; border-right:1px solid #999; }
div.day-number		{ background:#999; padding:5px; color:#fff; font-weight:bold; float:right; margin:-5px -5px 0 0; width:20px; text-align:center; }
/* shared */
td.calendar-day, td.calendar-day-np { width:80px; padding:5px; border-bottom:1px solid #999; border-right:1px solid #999; }
.weekView {
    vertical-align:middle;
    text-align:left;
    line-height:25px;

}
.dateNums {
    width:30px;
    height:30px;
    padding:5px;
    text-align:center;
    vertical-align: middle;
    
}

.JobsTable td {
    vertical-align:top;

}
.color1{
    background-color:green !important; 
}
.color_focus {
    background-color:lightgreen !important;
}

/** forms **/

form { overflow:hidden; }
.default input[type="text"],.default input[type="url"], .default input[type="password"], .default input[type="email"], .default input[type="number"], .default input[type="tel"], .default select, .default textarea, .default input[type="date"], .default input[type="time"] { padding:10px; font-size:1.25em; margin-bottom:.5em; border:1px solid rgb(192,192,192); border-radius:4px; }
.inputlist { padding: 10px;
    font-size: 1.25em;
    margin-bottom: .5em;
    border: 1px solid rgb(192,192,192);
    border-radius: 4px;
}
#home input[type="text"], #home input[type="password"], #home input[type="email"], #home input[type="date"], #home input[type="time"] { padding:1%; font-size:1.5em; margin-bottom:.5em; border:1px solid rgb(192,192,192); border-radius:4px; width:100%; max-width:277px; }
input.long { width:100%; max-width:375px !important; }
input:focus { box-shadow:0 0 3px #4f6298; }
label { font-weight:bold; display:inline-block; font-size:12pt; color: black; }
select option { padding-right:15px; }
fieldset { border:0; }
input[type="checkbox"], input[type="radio"] { margin-right:.5em; }
*::-webkit-input-placeholder {
    color:rgba(0,0,0,.5);
}    
*:-moz-placeholder {
    /* FF 4-18 */
    color:rgba(0,0,0,.5);
}
*::-moz-placeholder {
    /* FF 19+ */
    color:rgba(0,0,0,.5);
}    
*:-ms-input-placeholder {
    /* IE 10+ */
    color:rgba(0,0,0,.5);
}
input[type="search"], input[type="email"], input[type="password"], input[type="date"], input[type="time"] {
    -moz-appearance:    textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}
textarea { padding:10px; font-size:1.5em; font-family:'Helvetica'; max-width:318px; width:100%; }
.submitWide, .actionsBottom { padding:30px; background:white; overflow:hidden; box-shadow:0 0 100px rgba(0,0,0,.12); text-align:center; }
.submitWide input[type="submit"] { padding:20px 80px !important; }
.actionsBottom { text-align:center; }
.forgotPassword { float:left; margin:0; font-size:8pt; }
.forgotPw { font-size:8pt; }
header { display:block; overflow:hidden; }

#home section { display:block; overflow:hidden; text-align:center; }
.default section { display:block; overflow:hidden; padding:3%; }

/** end forms **/

/** global classes **/


.gray { background:rgb(235,235,235); position:relative; z-index:100; padding:1.5% 0% !important; box-shadow:0 25px 25px rgba(0,0,0,.05), 0 5px 5px rgba(0,0,0,.05) inset; }
.gray .container { max-width:1100px; margin:0 auto; }
.gray h1 { background:none; color:black !important; padding:0 !important; }
.gray .jStar { background-image:url("../img/icons-large.png") -214px -34px !important; background-size:286px 315px; }
@media (max-resolution:191dpi) { .gray .jStar { background-image:url("../img/icons.png") !important; } }
.green h1 { color:white; padding:0 !important; float:left; } 
.green h2 { color:white; }
.green .box h2 { color:black; }
.block { padding:5%; box-shadow:1px 1px 3px gray; background:white; }
.white { background:white; }
.center { display:inline-block; margin:0 auto; }
.clear { clear:both; }
.compact { padding:2%; }
.message { background:white; padding:10px 15px; display:inline-block; box-shadow:1px 1px 3px rgba(0,0,0,.25); margin:1em; border:1px solid red; border-radius:4px; }
.greenMsg { background: azure; padding:10px 15px; display:inline-block; box-shadow:1px 1px 3px rgba(0,0,0,.25); margin:1em; border:1px solid green; border-radius:4px; }
.error-message { color: red; }
.box { padding:3%; border-radius:4px; background:rgb(230,230,230); border:1px solid rgba(0,0,0,.15); margin-bottom:3%; overflow:hidden; }
.left { float:left; }
.right { float:right; }
.alignleft { float:left; margin:0 1em 1em 0; }
.alignright { float:right; margin:0 0 1em 1em; }
.position { font-size: 12pt; padding:8px 10px; background: none repeat scroll 0% 0% rgb(167, 208, 96); border-radius: 50%; color: white; width: 20px; text-align: center; font-weight: bold; margin-right:15px; }
.imageContainer { display:inline-block; position:relative; }
.imageContainer:after { display:block; content:''; }
.image { position: absolute; top: 0; bottom: 0; right: 0; left: 0; }
.table { display:table; }
.table > div { display:table-row; }
.table > div > div { display:table-cell; vertical-align:top; }
.boxTable { max-width:475px; box-shadow:0 0 50px rgba(0,0,0,.15); }
.boxTableHeader { text-align:center; background:#61881f; padding:2%; border-top-left-radius:4px; border-top-right-radius:4px; }
.boxTableHeader h3 { color:white; margin:0; font-size:1.5em; }
.boxTableFooter { background:#a7d060; border-bottom-left-radius:4px; border-bottom-right-radius:4px; text-align:center; font-weight:bold; padding:2%; }
.boxTableContent { font-size:12pt; background:white; background:rgb(97,136,31); font-size:1.25em; padding:5%; min-height:175px; text-align:left; min-height:250px; }
.boxTableContent li { margin-bottom:.5em; }
.videoWrapper { display:inline-block; position:relative; width:100%; }
.videoWrapper:after { display:block; content:''; }
.videoContainer { padding-top:56.25%; }
.videoContainer > embed { position:absolute; top:0; right:0; bottom:0; left:0; width:100%; height:100%; }
.whiteContainer { position:absolute; top:0; right:0; bottom:0; left:0; z-index:500; }
.whiteBG { position:absolute; top:0; right:0; bottom:0; left:0; background:white; opacity:.75; }
.whiteContent { position:absolute; top:0; right:0; bottom:0; left:0; display:table-cell; vertical-align:middle; text-align:center; }
.userLogo { float:left; border:8px solid white; box-shadow:1px 1px 3px rgba(0,0,0,.15); margin-right:1em; border-radius:4px; }
.subheader { background:rgb(97,136,31); padding:15px 30px; color:white; font-size:1.5em; margin:0; }
.checks { list-style-image:url('../img/check.png'); }
.checks li { margin-bottom:.5em; }
.shadow { box-shadow: 1px 1px 5px rgba(0,0,0,.2); }

/** end global classes **/

/* end global */

/* header */

#header { padding:15px; z-index:100; left:0; right:0; }
.default #header { box-shadow:0 0 50px rgba(0,0,0,.25); }
#home #header-bg { background:white; position:absolute; top:0; right:0; bottom:0; left:0; opacity:.85; }
.default #header-bg { background:white; position:absolute; top:0; right:0; bottom:0; left:0; }
#headerContent { max-width:1100px; margin:0 auto; position:relative; }
#siteLogoContainer { width:250px; }
#siteLogo { padding-top:25.4%; position:relative; background:url("../img/icons-large.png") -1% -33%; background-size:111%; }
@media (max-resolution:191dpi) { #siteLogo { background-image:url("../img/icons.png"); } }
#menu-search .menuIcon { background-position:-96px 0px; }
#menu-search:hover .menuIcon, .default #menu-search.ON .menuIcon { background-position:-96px -16px; }
#menu-favorites .menuIcon { background-position:-16px 0px; }
#menu-favorites:hover .menuIcon, #menu-favorites.ON .menuIcon { background-position:-16px -16px; }
#menu-mypage .menuIcon { background-position:-111px 0px; }
#menu-mypage:hover .menuIcon, #menu-mypage.ON .menuIcon { background-position:-111px -16px; }
#menu-mine .menuIcon { background-position:-32px 0px; }
#menu-mine:hover .menuIcon, #menu-mine.ON .menuIcon { background-position:-32px -16px; }
#menu-add .menuIcon { background-position:-48px 0px; }
#menu-add:hover .menuIcon, #menu-add.ON .menuIcon { background-position:-48px -16px; }
#menu-logout .menuIcon { background-position:-64px 0px; }
#menu-logout:hover .menuIcon, #menu-logout.ON .menuIcon { background-position:-64px -16px; }
#menu-login .menuIcon { background-position:-80px 0px; }
#menu-login:hover .menuIcon, #menu-login.ON .menuIcon { background-position:-80px -16px; }
.menuButton { display:none; cursor:pointer; top:5px; right:5px; height:24px; width:24px; border:5px solid white; position:relative; top:-3px; right:-3px; background:url("../img/icons-large.png"); background-size:286px 315px; background-position:-165px -34px; }
.menuButton:active { background-position:-165px -59px; }
.menuIcon { display:inline-block; width:16px; height:16px; background-attachment:fixed; background:url("../img/icons-large.png") top left; margin:0 3px -3px 0; background-size:286px 315px; }
.groupHeader { margin-left: 20px; }
#groupHeaderId { font-style: italic; color: #CCFFFF!important; /*text-decoration: overline;*/ }
@media (max-resolution:191dpi) { .menuIcon, .menuButton { background-image:url("../img/icons.png"); } }

/* end header */

/* content */

#home #content { margin:0 auto; box-shadow: 0px 0px 500px rgba(0, 0, 0, 0.3); overflow:hidden; }
.default #content { background:white; max-width:1100px; margin:0 auto; box-shadow: 0px 0px 500px rgba(0, 0, 0, 0.3); overflow:hidden; position: relative; }
.middleContent { display:table !important; padding:0 !important; width:100%; text-align:left; }
.actions { text-align:center !important; }
.actions ul { margin:0; padding:0; }
.actions li { list-style:none; margin-bottom:.5em; }
.actions li a { color:white !important; text-decoration:none; padding:20px 25px !important; display:block !important; }
.mainContent { display:table-cell; }
.paging span { padding:0!important; margin-right:.5em; }
.paging span:first-of-type { margin-right:1em; }
.paging span.current { background:none !important; color:black !important; padding: 10px 20px !important; }
.paging span a { color:white !important; text-decoration:none; padding: 10px 20px !important; display: block; }
.mainContent table { width:100%; }
.mainContent thead tr, .mainContent tfoot tr { background:#61881f; color:white; }
.mainContent thead a, .mainContent tfoot a { color:white !important; text-decoration:none; }
.mainContent th { padding:10px 20px; }
.mainContent thead th { font-size:12pt; text-align:left; }
.mainContent tbody td .jStar, .socialActions .jStar { background-image:url("../img/icons-large.png") !important; background-position:-164px -82px !important; background-size:286px 315px !important; }
@media (max-resolution:191dpi) { .mainContent tbody td .jStar, .socialActions .jStar { background-image:url("../img/icons.png") !important; } }
.mainContent tbody tr:hover { background:#d2deff !important; cursor:pointer; }
.mainContent tbody tr:hover .jStar, .mainContent tbody tr:hover:nth-of-type(even) .jStar { background-image:url("../img/icons-large.png") !important; background-position:-164px -126px !important; background-size:286px 315px !important; }
@media (max-resolution:191dpi) { .mainContent tbody tr:hover .jStar, .mainContent tbody tr:hover:nth-of-type(even) .jStar { background-image:url("../img/icons.png") !important; } }
.mainContent tbody tr:nth-of-type(odd) { background:white; }
.mainContent tbody tr:nth-of-type(even) { background:rgb(235,235,235); }
.mainContent tbody tr:nth-of-type(even) .jStar { background-image:url("../img/icons-large.png") !important; background-position:-164px -104px !important; background-size:286px 315px !important; }
@media (max-resolution:191dpi) { .mainContent tbody tr:nth-of-type(even) .jStar { background-image:url("../img/icons.png") !important; } }
.mainContent tbody td { padding:20px; vertical-align:top; }
.mainContent tbody td small { color:gray; }
.mainContent tbody .actionsWrapper { display:inline-block; }
.mainContent tbody .actionsContainer { display:table; }
.mainContent tbody .actionsContainer a { display:table-cell; }
.col3 td, .col3 th { padding-left:6% !important; }
.jRatingDiv { float:right; color:gray; font-size:9pt; }
.fa-shopping-cart { color: #979797; }
.cart-td { padding: 20px 0!important; }
.notifyjs-confirmPurchase-base { text-align: center; opacity: 0.95; width: 350px; background: #F5F5F5; padding: 5px; border-radius: 10px; border: solid #0080ff; position: fixed; top: 50%; left: 50%; /* bring your own prefixes */ transform: translate(-50%, -50%); }




/* banners */
.red_banner { padding:3px;border:4px solid red; background:maroon;color:white;}
.yellow_banner { padding:3px;border:4px solid yellow; background:orange;}
.green_banner { padding:3px;border:4px solid green; background:green; color:white;}
.green_cell { height: 45px;  width: 45px; background:cyan; border:1px solid white; }
.red_cell {height: 45px;  width: 45px; background:red; border:1px solid white;}
.yellow_cell { height: 45px;  width: 45px; background:yellow;border:1px solid white;}
.tooltip {
	display:none;
	position:absolute;
	border:1px solid #333;
	background-color:#161616;
	border-radius:5px;
	padding:10px;
	color:#fff;
	font-size:12px Arial;
    white-space: pre;
}
/* end banners */


/* end content */

.evenRow {
    background: #EEEEEE;
}
.oddRow {
    background: #C4C4C4;
}


/* widgets */

/** buttons **/

#home .button, #home button, #home input[type="submit"] { border-radius:4px; cursor:pointer; border:0; background:#4f6298; transition:background .5s; color:white; padding:2% 4%; text-decoration:none; font-size:1em; position:relative; top:1px; /*box-shadow:0 -10px 10px #9b4772 inset, 0 10px 10px #cd6098 inset;*/ }
#home .button:hover, #home button:hover, #home input[type="submit"]:hover { background:#8295cc; box-shadow:none; }
#home .button, #home button { position:relative; }
.button:disabled, button:disabled, input[type="submit"]:disabled, .paging span.disabled { display:none; /*background:rgb(225,225,225); cursor:default; color:rgb(164,164,164) !important;*/ }
.button.small, button.small, input[type="submit"].small, #powerTip a { padding:13px 20px; font-size:10pt; position:relative; top:-2px; }
.actionIcon { width:24px; height:24px; background:url("../img/icons-large.png"); background-size:286px 315px; display:inline-block; }
@media (max-resolution:191dpi) { .actionIcon { background-image:url("../img/icons.png"); } }
.actionEdit { background-position:0px -32px; }
.actionShare { background-position:-24px -32px; }
.actionDelete { background-position:-48px -32px; }
.actionEdit:hover { background-position:0px -56px; }
.actionShare:hover { background-position:-24px -56px; }
.actionDelete:hover { background-position:-48px -56px; }

/** end buttons **/
	
/** pop **/
.right_floaters {float:right;}
.black { display:none; position:fixed; top:0; right:0; bottom:0; left:0; background:black; opacity:.5; z-index:10000; }
.popup { display:none; background:white; color:black; position:fixed; z-index:10001; top:12%; right:30%; bottom:12%; left:30%; max-height:520px; padding:40px; overflow-y:auto; }
.popup .x { position:absolute; top:0; right:0; background:white; border-bottom-left-radius:100%; box-shadow:0px 0px 5px white inset; border:1px solid rgb(192,192,192); cursor:pointer; background:rgb(225,225,225); color:black; padding:5px 9px 10px 18px; }
@media (max-width:1600px ) {
	.popup { right:25%; left:25%; }
}
@media (max-width:1300px ) {
	.popup { right:18%; left:18%; }
}
@media (max-width:1000px ) {
	.popup { right:10%; left:10%; }
}
@media (max-width:600px ) {
    
    .right_floaters {display:inline;}
    .right_floaters {float:none;}
    .tRow {display:block;}
    .tCellR {display:inline;
            font-weight: bold;}
	.popup { right:5%; left:5%; }
    .default .button, button, .default input[type="submit"], .paging span, #powerTip a { border-radius:4px; cursor:pointer; border:0; background: var(--sub_color);  transition:background .5s; color:var(--text_under_sub) !important; padding:8px 15px; text-decoration:none; font-size:1em; top:-3px; /*box-shadow:0 -10px 10px #9b4772 inset, 0 10px 10px #cd6098 inset;*/ display:inline-block; }
    h1 {display:none}
    .showme {display:block; height:200px;}
    .blockOnPhone {display:block;}

}
.popup input[type="text"] { width:100%; }

/** end popup **/
	


/* end widgets */

/* pages */

/** home **/

.home-section { padding:5%; }
@media (max-resolution:191dpi) { #home1ScrollDownArrow { background-image:url("../img/icons-large.png"); } }
.home-login-register { float:right; width:430px; text-align:left; }
.home-login-register input[type="submit"] { float:right; position:relative; top:2px; right:2px; }
#home-login { margin-bottom:1em; }
#home-popular-lists { float:right; margin:0; padding:0; width:100%; max-width:450px; }
#home-popular-lists li { margin-bottom:.5em; list-style:none; padding:3%; background:white; box-shadow:1px 1px 3px rgba(0,0,0,.5); overflow:hidden; }
#home-popular-lists li .button { float:right; padding:5%; }
#home-popular-lists li h3 { margin:0; font-size:2em; }
#home-popular-lists li h3 a { text-decoration:none; }
#home-popular-lists .stars { float:left; margin-right:1em; }
#home-popular-lists li .votes { float:left; }
#home-h1 { max-width:610px; float:left; margin-right:4%; text-align:left; }
#home-phone-track { float:left; width:308px; height:450px; }
#home-phone-container { position:relative; }
#homePhoneImageContainer { width:308px; }
#homePhoneImage { padding-top:194.81%; background:url('../img/home-sprite.png') 0 0; background-size:151%; }
@media (max-resolution:191dpi) { #homePhoneImage { background-image:url("../img/home-sprite-small.png"); } }
#homeButtonAppStoreContainer { width:195px; }
#homeButtonAppStore { padding-top:37.44%; background:url('../img/home-sprite.png') -100% -59.3%; background-size:233%; }
@media (max-resolution:191dpi) { #homeButtonAppStore { background-image:url("../img/home-sprite-small.png"); } }
#homeButtonGooglePlayContainer { width:195px; }
#homeButtonGooglePlay { padding-top:37.44%; background:url('../img/home-sprite.png') 0px -59.3%; background-size:233%; }
@media (max-resolution:191dpi) { #homeButtonGooglePlay { background-image:url("../img/home-sprite-small.png"); } }
/*#home-phone-screen-1 { position:absolute; top:0; left:0; }*/
#home-how-to { float:left; margin:0; max-width:500px; position:relative; right:-200px; text-align:left; }
#home-3 h2 { margin:0; }
#home-circles { text-align:center; margin-bottom:5%; }
#home-circles .circle:nth-child(-n+3) { margin-right:2em; }
.homeCircleContainer { width:200px; height:190px; }
.homeCircle { padding-top:95%; background-size:400% !important; background:url('../img/home-sprite2.png'); }
@media (max-resolution:191dpi) { .homeCircle { background-image:url("../img/home-sprite2-small.png"); } }
/*@media (max-resolution:191dpi) { .homeCircle { background-image:url("../img/home-sprite2-small.png"); background-size:200% !important; } }*/
#circle-1 > div { background-position:0 100%; }
#circle-2 > div { background-position:33.5% 100%; }
#circle-3 > div { background-position:66.75% 100%; }
#circle-4 > div { background-position:100% 100%; }
#home-4 { padding-bottom:0; }
#homeWomanContainerContainer { display:table-cell; }
#homeWomanContainer { width:463px; }
#homeWoman { padding-top:130.24%; /*margin-bottom:-4px;*/ background:url('../img/home-sprite.png') 0 -90%; background-size:101%; }
@media (max-resolution:191dpi) { #homeWoman { background-image:url("../img/home-sprite-small.png"); } }
#home-4-content { display:table-cell; vertical-align:bottom; padding-bottom:150px; }
#home-4-content ul { padding:0; font-size:1.75em; text-align:left; }
#home-4-content ul li { list-style:none; margin-bottom:.5em; padding-bottom:.5em; border-bottom:1px solid gray; max-width:480px; }
#home-4-content ul li:last-of-type { border-bottom:0; }
#home-4-content ul li div { display:inline-block; }
#home-4-content ul li div:nth-of-type(1) { width:48px; height:48px; background-image:url('../img/icons-large.png'); background-size:286px 315px; margin:0 .5em -5px 0; }
@media (max-resolution:191dpi) { #home-4-content ul li div:nth-of-type(1) { background-image:url("../img/icons-large.png"); } }
#home-4-list-image-friends { background-position:-96px -131px; }
#home-4-list-image-customers { background-position:-48px -131px; }
#home-4-list-image-world { background-position:0px -131px; }
#home-know-how { margin-bottom:0; float:left; max-width:400px; text-align:left; }
#home-social-buttons { position:absolute; }
#home-social-buttons img { height:auto; float:left; width:85px; }
#homeIllustrationContainer { width:100%; max-width:540px; }
#homeIllustration { padding-top:28%; position:relative; top:43px; background:url('../img/home-sprite2.png') -1px 0px; background-size:149%; }
@media (max-resolution:191dpi) { #homeIllustration { background-image:url("../img/home-sprite2-small.png"); } }

/** end home **/

/** user account **/

#UsersPassword1
.User.Account #passwordDiv input { display:block; }
.User.Account #passwordDiv #UsersPassword1 { display:block; }
.User.Account #passwordDiv #UsersPassword2 { display:block; }
#CreditCardAccountForm h3, #UpgradeAccountForm h3 { font-size:18pt; }
#CreditCardAccountForm ul, #UpgradeAccountForm ul { margin-top:0; padding:0; }
#CreditCardAccountForm li, #UpgradeAccountForm ul { list-style:none; margin-bottom:.5em; }
#CreditCardAccountForm li label, #UpgradeAccountForm li label { display:inline; list-style:none; }
#brandingLeftCol { float:left; max-width:645px; margin-right:3%; }

/** end user account **/

/* end pages */

/* media queries */

@media (max-width:1155px) {
	#home h1, #home h2 { font-size:2em !important; }
	#home-h1 { font-size:3em !important; float:none; display:inline-block; text-align:center; max-width:600px; }
	#home1ScrollDown { right:1%; font-size:1em; }
	.home-login-register { float:none; display:inline-block; margin-top:30px; }
	#homeIllustrationContainer { margin:-30px 0 30px; }
	#homeWomanContainerContainer { position:relative; display:block; bottom:-143px; }
	#homeWomanContainer { width:225px; }
	#home-know-how { max-width:none !important; }
	#home-circles .circle { width:150px; height:143px; margin-right:1em; }
	#home-circles .circle:nth-child(-n+3) { margin-right:1em; }
	ol { margin-left:5px; }
	ol > li { padding:0; }
	ol > li:before { font-size:12pt; }
	ol > li > h2 { position:relative; left:20px; top:13px; }
	.submitWide { text-align:center; }
	.submitWide .submit { float:none; }
	.ui-icon.ui-icon-arrowthick-2-n-s { width:9px; }
	#homeButtonGooglePlayContainer { top:50px; }
	#home-4-content ul li { font-size:14pt; }
	.boxTable .boxTableContent { font-size:1em; text-align:left; }
    .cke_reset {width: 585px !important; }
    .item-li {width: 650px !important;}
}

@media (max-width:800px) {
	#home h1, #home h2 { font-size:2em !important; }
    #header { padding:0px; z-index:100; left:0; right:0; }
	#home { position:fixed; }
	#home-1-container { margin-top:0; }
	#home-1 { padding:6% 3%; }
	#home1ScrollDown { display:none; }
	p { font-size:1em; }
	textarea { max-width:318px; }
	#home-phone-track, #home-phone-container, #homePhoneImageContainer/*, #home-phone-screen-1*/ { width:200px; }
	#home-phone-track { height:300px; }
	h1, h2 { font-size:2em !important; }
	#home-h1 { font-size:2em !important}
	#home-how-to { max-width:200px; }
	ol.large li { font-size:1.5em; }
	#siteLogoContainer { width:150px; }
	.menuButton { display:block !important; position:absolute; right:0; top:0; }
	.headerLinks { float:none; margin:1em 0; font-size:10pt; }
	.col2, .col3, .col4 { display:none; }
	.entryHeader, .entryHeaderInfo { display:block }
	.mainContent tbody td { font-size:12pt; }
	#homeWomanContainerContainer { display:none; }
	.mainContent tbody td { padding:10px; }
	.subheader { padding:10px 20px; }
	#home-app-store-buttons > a > div { width:66%; }
    .item-li {width: 515px !important;}
}

@media (max-width:600px) {
	#home-1 { padding:3%; }
	#home-phone-track, #home-phone-container, #homePhoneImageContainer/*, #home-phone-screen-1*/ { width:150px; }
	#home-4-content ul li { font-size:14pt; }
	.mainContent tbody td { padding:10px; }
	#UserInterestForm { -moz-column-count:1; -webkit-column-count:1; column-count:1; }
	.subheader { font-size:10pt; }
    .cke_reset { width: 400px !important;}
    .item-li {width: 460px !important;}
}

@media (max-width:500px) {
	h1, h2 { font-size:1.25em !important; }
	.home-login-register { display:block; width:100%; }
	input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="time"] { overflow:hidden; display:block; width:90% !important; max-width:none !important; margin:0; }
	.home-login-register input[type="submit"] { float:none !important; margin-top:1em; }
	#home-how-to { position:absolute; left:50%;  max-width:175px; }
	#home-circles .circle { width:100px; height:95px; margin-right:.5em !important; }
	#home-4-content { padding-bottom:75px !important; }
	#home-social-buttons { text-align:center; }
	#home-social-buttons img { width:50px; }
    .cke_reset { width: 250px !important;}
    .item-li {width: 315px !important;}
}

/* end media queries */


/* calendaring */

.astrodivider {
    margin:10px auto;
    width:400px; 
    max-width: 100%;
    position:relative;
}

.astrodividermask { 
  overflow:hidden; height:20px; 
}

.astrodividermask:after { 
    content:''; 
    display:block; margin:-25px auto 0;
    width:100%; height:25px;  
      border-radius:125px / 12px;
     box-shadow:0 0 8px var(--sub_color);
}
.astrodivider span {
  width:50px; height:50px; 
  position:absolute; 
  bottom:100%; margin-bottom:-25px;
  left:50%; margin-left:-25px;
  border-radius:100%;
 box-shadow:0 2px 4px var(--sub_color);
  background:#fff;
}
.astrodivider i {
  position:absolute;
  top:4px; bottom:4px;
  left:4px; right:4px;
  border-radius:100%;
  border:1px dashed var(--sub_color);
  text-align:center;
  line-height:40px;
  font-style:normal;
   color:var(--sub_color);
}

.timeline-wrapper {
  margin-right: 1.5rem;
  border-right: 3px solid #ddd;
}
.node {
  padding-right: .5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.node h3, .node p {
  margin: 0;
}
.node::before {
  content: "";
  width: .5rem;
  height: .5rem;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: absolute;
  top: .3rem;
  right: -.5rem;
}
.end_node::before {
  content: "";
  width: .5rem;
  height: .5rem;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: absolute;
  top: .3rem;
  right: -.5rem;
}.end_node {
  padding-right: .5rem;
  position: relative;
}

.calendar {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  grid-template-rows: 50px;
  grid-auto-rows: 120px;
  overflow: auto;
}
.calendar-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  max-width: 1200px;
}
.calendar-header {
  text-align: center;
  padding: 0;
  background: linear-gradient(to bottom, #fafbfd 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
}
.calendar-header h1 {
  margin: 0;
  font-size: 18px;
}
.calendar-header p {
  margin: 5px 0 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(81, 86, 93, 0.4);
}
.calendar-header button {
  background: 0;
  border: 0;
  padding: 0;
  color: rgba(81, 86, 93, 0.7);
  cursor: pointer;
  outline: 0;
}


/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Celndar for month view */
.month_calendar {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    font-family: "proxima-nova", sans-serif;
    font-size: 1rem;
    color: #606a7b;
    line-height: 1.2;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
}
.month_calendar th {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    font-family: "proxima-nova", sans-serif;
    line-height: 1.2;
    border-collapse: collapse;
    border-spacing: 0;
    text-transform: uppercase;
    color: #969ba0;
    font-size: 0.84375rem;
    text-align: center;
    background-color: #f6f7f7;
    border: 1px solid #cbcdcf;
    padding: 8px;
    vertical-align: top;
}
.month_calendar td {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    font-family: "proxima-nova", sans-serif;
    font-size: 1rem;
    color: #606a7b;
    line-height: 1.2;
    border-collapse: collapse;
    border-spacing: 0;
    cursor: pointer;
    height: 30px;
    position: relative;
    border: 1px solid #cbcdcf;
    padding: 8px;
    vertical-align: top;
}

.gray_float_date {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    font-family: "proxima-nova", sans-serif;
    font-size: 1rem;
    border-collapse: collapse;
    border-spacing: 0;
    cursor: pointer;
    margin: 0 0 10px;
    line-height: 1.2;
    float: left;
    color: #969ba0;
    margin-bottom: 3px;
}

.gray_float_x {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    font-family: "proxima-nova", sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    border-collapse: collapse;
    border-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    transition-duration: 0.25s;
    float: right;
    color: #969ba0;
}

.month_calendar_div{
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    font-family: "proxima-nova", sans-serif;
    border-collapse: collapse;
    border-spacing: 0;
    line-height: 1.2;
    background: #969ba0;
    color: #fff;
    border-radius: 2px;
    font-size: 0.8125rem;
    clear: both;
    margin: 3px 0;
    padding: 3px;
    cursor: pointer;
    border-width: 2px;
    border-style: solid;
}
/*   end month calendar styles */


/* start chat styles */
.indicator {
    border-radius:3px;background-color:var(--sub_color);position:relative;top:-5px;display:inline;color:white
}


.people-list {
  width: 260px;
  float: left;
  overflow-y: scroll;
  height: 914px;
}
.people-list .search {
  padding: 20px 20px 0px 20px;
}
.people-list .fa-search {
  position: relative;
  left: -25px;
}
.people-list ul {
  padding: 0px 20px 20px 20px;
  height: 770px;
list-style: none;  
}
.name:before{
   content: ' ';
   display: inline-block;
   height: 15px;
   width: 15px;
   background-image: url('../img/corn.svg');
   background-size: contain;
   background-repeat:no-repeat;
}



.people-list ul li {
    list-style: none;
  padding-bottom: 20px;
}
.chat-history ul {
    padding: 0px;
}
.chat-history ul li{
    list-style: none;
    padding-inline-start: 0px;
}
.message-data::before{
   content: ' ';
   display: inline-block;
   height: 15px;
   width: 15px;
   background-image: url('../img/corn.svg');
   background-size: contain;
   background-repeat:no-repeat;
}
.people-list img {
  float: left;
}
.people-list .about {
  float: left;
  margin-top: 8px;
}
.people-list .about {
  padding-left: 8px;
}
.people-list .status {
  color: #92959E;
}

.chat {
  width: 490px;
  float: left;
  background: #F2F5F8;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #434651;
}
.chat .chat-header {
  padding: 20px;
  border-bottom: 2px solid white;
}
.chat .chat-header img {
  float: left;
}
.chat .chat-header .chat-about {
  float: left;
  padding-left: 10px;
  margin-top: 6px;
}
.chat .chat-header .chat-with {
  font-weight: bold;
  font-size: 16px;
}
.chat .chat-header .chat-num-messages {
  color: #92959E;
}
.chat .chat-header .fa-star {
  float: right;
  color: #D8DADF;
  font-size: 20px;
  margin-top: 12px;
}
.chat .chat-history {
  padding: 30px 30px 20px;
  border-bottom: 2px solid white;
  overflow-y: scroll;
  height: 575px;
}
.chat .chat-history .message-data {
  margin-bottom: 15px;
}
.chat .chat-history .message-data-time {
  color: #a8aab1;
  padding-left: 6px;
}
.chat .chat-history .single-message {
  color: var(--text_under_sub);
  padding: 18px 20px;
  line-height: 26px;
  font-size: 16px;
  border-radius: 7px;
  margin-bottom: 30px;
  width: 90%;
  position: relative;
  white-space: pre-wrap;
}
.other-message {
    color:var(--text_under_main) !important;
}
.chat .chat-history .single-message:after {
  bottom: 100%;
  left: 7%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: var(--sub_color);
  border-width: 10px;
  margin-left: -10px;
}
.chat-container {
  font: 14px/20px ;
  
  color: var(--text_under_main);
  margin: 0 auto;
  width: 750px;
  background: var(--main_color);
  border-radius: 5px;
}
.chat-container a {
  text-decoration: none;
  color: var(--text_under_main) !important;    
}
.chat .chat-history .other-message {
  background: var(--main_color);
}

.chat .chat-history .my-message {
  background: var(--sub_color);
}
.chat .chat-history .my-message:after {
  border-bottom-color: var(--main_color);
  left: 93%;
}

.chat .chat-message {
  padding: 30px;
}
.chat .chat-message textarea {
  width: 100%;
  border: none;
  padding: 10px 20px;
  font: 14px/22px; 
  margin-bottom: 10px;
  border-radius: 5px;
  resize: none;
}
.chat .chat-message .fa-file-o, .chat .chat-message .fa-file-image-o {
  font-size: 16px;
  color: gray;
  cursor: pointer;
}
.chat .chat-message button {
  float: right;
  color: var(--sub_color);
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: var(--sub_color);
}
.chat .chat-message button:hover {
  color: var(--sub_color);
}

.online, .offline, .me {
  margin-right: 3px;
  font-size: 10px;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.float-right {
  float: right;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.cluckin-out{top:15px; right:15px;}

@media (max-width:500px) {
.chat-container{width:90%}
.chat{width:100%}
.chat-history{padding:30px 10px 20px}
.chat{height:100%}
.chat-message{padding:5px}
.chat-header{padding:5px}
.people-list{width:100%}
.cluckin-out{top:0px; right:0px;}
}


/* End Chat styles */

/* Photos and Tags */

.tags a {
   
    box-sizing: border-box;
    padding: 1px 5px 1px 5px;
    z-index:2;
    position: relative;
    font-weight: bold;
    color: white !important;
    display: inline-block;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    }

.tags {
    display:inline;
}
    
    /* End tags for photos */
    
.datalist-arrow {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-70%);
    pointer-events: none;
    color: black;
    font-size: 14px;
}
    
    
.datalist-wrapper {
    position: relative;
    display: inline-block;
}

.datalist-wrapper input {
    padding-right: 10px;
}

/* ============================================================
   Invoice action buttons (SingleClient.php invoices panel)
   Compact, professional replacements for the big global orange
   buttons. Keeps the brand orange (--sub_color) for the primary
   money action; utility/destructive actions are quieter so the
   row scans cleanly. All rules use .inv-btn so they override the
   global `button` padding without touching buttons elsewhere.
   ============================================================ */
.inv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.inv-actions form { display: inline; margin: 0; padding: 0; }

.inv-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px !important;   /* beat the global button padding */
  margin: 0 !important;
  font-size: 0.95em !important;
  font-weight: 600;
  line-height: 1.15;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--sub_color);
  color: var(--text_under_sub) !important;
  cursor: pointer;
  white-space: nowrap;
  top: 0 !important;
  box-shadow: none;
  transition: filter .15s ease, box-shadow .15s ease, transform .04s ease;
}
.inv-btn:hover  { background: var(--sub_color); filter: brightness(1.06); box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.inv-btn:active { transform: translateY(1px); }
.inv-btn .ico   { font-size: 1.05em; line-height: 1; font-weight: 400; }

/* Primary money action (Mark Paid / Send now): solid brand orange. */
.inv-btn--primary { background: var(--sub_color); color: var(--text_under_sub) !important; }

/* Utility (Refresh / Text): quiet outline so it doesn't compete. */
.inv-btn--ghost {
  background: #ffffff;
  color: #4a4a4a !important;
  border: 1px solid #d7c9c2;
}
.inv-btn--ghost:hover { background: #faf5f3; filter: none; }

/* Destructive (Void / Delete): outlined red, still readable. */
.inv-btn--danger {
  background: #ffffff;
  color: #b5320f !important;
  border: 1px solid #e2a595;
}
.inv-btn--danger:hover { background: #fbeae5; filter: none; }

/* Surcharge rebill: the heaviest action, so it looks deliberate. */
.inv-btn--surcharge {
  background: #8a1c08;
  color: #ffffff !important;
  border: 1px solid #6f1606;
}
.inv-btn--surcharge:hover { background: #7a1707; filter: none; }

/* Muted "nothing to do here" note for terminal invoices. */
.inv-none { color: #aaa; font-size: 0.82em; font-style: italic; }
/* ---- chickPopup(): the site-wide modal dialog. The javascript that builds this
   markup is chick_popup_assets() in inc/all_inc.php. ---- */
.chick_popup_overlay {
  position:fixed; top:0; left:0; right:0; bottom:0; z-index:100000;
  background:rgba(0,0,0,.45); text-align:center; padding:10px;
  animation:chick_popup_fade .15s ease-out;
}
/* full-height ghost + inline-block dialog = vertical centering that works everywhere */
.chick_popup_overlay:before { content:""; display:inline-block; height:100%; vertical-align:middle; }
.chick_popup_dialog {
  display:inline-block; vertical-align:middle; text-align:left; position:relative;
  background:white; border-radius:8px; border-top:8px solid var(--main_color);
  box-shadow:0 10px 40px rgba(0,0,0,.4); max-width:520px; width:90%;
  max-height:90%; overflow:auto; padding:25px 25px 15px 25px;
  animation:chick_popup_pop .15s ease-out;
}
.chick_popup_text { font-size:1.1em; line-height:1.45; color:#222; margin-bottom:20px; word-wrap:break-word; }
.chick_popup_buttons { text-align:right; }
.chick_popup_buttons button { margin:5px 0 5px 10px; }
.chick_popup_x {
  position:absolute; top:5px; right:12px; cursor:pointer; font-size:1.4em;
  color:#999; line-height:1; background:none; border:0; padding:0 !important;
}
.chick_popup_x:hover { color:var(--sub_color); background:none !important; }
@keyframes chick_popup_fade { from { opacity:0; } to { opacity:1; } }
@keyframes chick_popup_pop { from { opacity:0; transform:translateY(-15px); } to { opacity:1; transform:translateY(0); } }
@media only screen and (max-width: 760px) {
  .chick_popup_dialog { padding:20px 15px 10px 15px; }
  .chick_popup_buttons button { margin-left:5px; }
}
