/* ---------- General ---------- */
body
{
    color: #000;
    font-family: 'Open Sans', sans-serif;
    overflow-y:scroll;
}

body .bg-light {
     /* opacity: 90%; */
}

hr {
    border-top: solid 3px #f68922;
}

/* ---------- Header ----------*/
header
{
    background:#f3f3f3;
    padding:10px 0px;
}

#otWarning {
    margin-top: -8px;
    padding:8px;
    background:red;
    color:white;
}

/* ---------- Nav Bar ---------- */

nav li a {
    text-decoration: none!important;
}

nav.navbar.navbar-default{
    background: rgba(0,0,0,.6);
    margin-bottom: 8px;
    border: none;
    border-radius: 0px;
    position: sticky;
    width: 100%;
    top: 0;
    z-index:500;
    -webkit-transition: background .5s;
    transition: background .5s; 
}

nav.navbar.navbar-default.scrolled{
    background: rgba(0,0,0,.9);
    -webkit-transition: background .5s;
    transition: background .5s;    
}

.navbar-default .navbar-nav>li>a
{
    color:#fff;
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color:#ccc;
}

ul.dropdown-menu h4 {
    text-align: center;
    border-bottom: 1px solid #ccc;
}

@media (min-width:768px) {
	.navbar-nav>li {
    	float: none !important;
    	display: inline-block;
	}

	ul.nav.navbar-nav {
    	width: 100%;
	}
}

/* ---------- Main ---------- */
main
{
    min-height:100px;
    /* overflow:hidden; */
    /* margin-bottom:75px; */
}

a.noni4ip {
    color: red;
	font-weight:bold;
}

a.btn.btn-primary {
    color: #fff;
    text-decoration: none;
}

.activeTask {
	background:  #5CB75C;
	color: #fff;
}

.activeTask a {
	color: #555;
}

#addProject {
    margin-bottom: 15px;
}

.addReminder { 
    float:right;
}

#addReminder {
    display: block;
    position: absolute;
    top: 15%;
    left: 40%;
    height: 500px;
    width: 300px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

.addVendorInfo {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
	margin-top: 15px;
}

.addVendorInfo:first-child {
	background:none!important;
}

.addVendorInfo:nth-child(odd) {
    background: rgba(172,205,55,0.3);
}

table.allBillingNotes {
	width:100%;
	padding:5px 8px;
}

#bannerNotifications {
    position: relative;
    z-index: 1000;
}

.billingNotes tr {
    background: white;
}

.billingNotes td {
    vertical-align: top;
}

.birthdays {
    overflow:auto;
    text-align: center;
    font-size: 18px;
    background: url(/images/birthdayBG.jpg) no-repeat center;
    color: #444;
    background-size:cover;
    box-shadow: 5px 5px 8px #ccc;
    border-radius: 25px;
    border: 1px solid #bbb;
}

.birthdays h2 {
    font-weight:bold;
    font-size:37px
}

ul.birthdayList {
    list-style:none;
}

table.allBillingNotes tr:nth-child(even) {
	 background: rgba(172,205,55,0.3);
}

.allBillingNotes td {
    font-size: 15px;
	 padding:8px 12px;
}

.allBillingNotes th {
    font-size: 18px;
	 padding:8px 12px;
}

.alphabet a {
    display: inline-block;
    margin: .1%;
    width: 2.8%;
    background: #f9f9f9;
    padding: 5px;
}

a.altRow {
    margin: 0px -15px;
    padding: 7px 15px;
    display:  block;
}

a.altRow:nth-child(even) {
    background: #efefef;
}

a.btn.btn-success {
    color: #fff;
}

a.btn.btn-success:hover {
    color: #5cb85c;
}

.altRow.row {
	padding: 12px 0px;
	border-radius:5px;
	margin-top:5px;
	background: #efefef;
}

tr.altRow:nth-child(even) {
	background: #efefef;
}

#billing sup i {
    font-size: .6em;
}

#billing textarea.form-control {
    min-height: 200px;
}

.billingHighlight td {
    background: yellow;
    margin-bottom: 2px;
    border-bottom: 3px solid #fff;
}

.billingHistory > div {
    margin-bottom: 10px;
}

.billingHistory .row {
    padding: 8px;
    width: 95%;
    margin: 0px auto;
}

.billHistoryData:nth-child(even) {
    background: #efefef;
}

.billHistoryData {
    padding: 5px;
    margin-top: 2px;
}

.billItem {
    overflow: hidden;
    margin-bottom: 8px;
    background: #F6A76A;
    padding: 8px 5px;
    color: #fff;
    font-weight: bold;
}

.billingItemSummary {
	overflow:hidden;
	border:1px solid #ccc;
	border-radius:5px;
	padding:5px 15px;
}

.billingNotes {
	min-height:250px;
}

.billingServiceDetail {
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
    padding: 10px 0px;
    border-bottom: dotted 1px #ccc;
}

.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

.bigNotes {
	min-height:150px;
	padding:15px 10px;
}

table.billingNotes tr:nth-child(odd) {
    background: #fafafa;
}

table.billingNotes td {
    padding: 5px 10px 10px;
}

.billingReport {
    margin: 15px 0px;
	
}

.billingReport tr:nth-child(even) {
    background: #eee;
}

.billingReport td {
    padding: 7px;
}

.blinkie {
    display: none;
}

.blinkie.active {
    display: inline;
}

.breadcrumb li {
    list-style: none;
    display: inline-block;
}

.breadcrumb li:last-of-type:after {
    content: none;
}

.calendarHeader {
    width: 12%;
    float: left;
    text-align: center;
    margin: .25%;
	min-width:120px;
}

.clientContacts {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    clear:both;
}

.clientContacts .row {
    padding: 1px 8px;
}

.clientContacts .row:nth-child(odd) {
    background: none !important;
}

.createTaskButton {
    width: 100%;
    margin: 8px 0px;
}

.dayPunch {
    display: inline-block;
    width: 12%;
    vertical-align:  top;
	border: 1px solid #ccc;
    margin: .25%;
    text-align:  center;	
    padding-bottom: 15px;
    min-height: 200px;
	position:relative;
	min-width:120px;
}

#domainFeeTable th, #domainFeeTable td {
    padding: 5px;
}

@media screen and (min-width:768px){
	ul.domainList {
		column-count:2;
	}
}

@media screen and (min-width:1200px){
	ul.domainList {
		column-count:3;
	}
}

.domainList li {
    list-style: none;
}

.domainList .fa-envelope {
    color: #666;
}

.editTitle {
    font-size:.7em;
}

.expiringDomainList td {
    padding: 1px;
}

.expiringDomainList tr:nth-child(odd) {
    background: #eee;
}

ul.expiringDomainList {
    max-height: 300px;
    overflow-y: auto;
}

table.expiringDomainList {
    max-height: 400px;
    overflow-y: auto;
    display: block;
}

.extraBillables > div {
    background: rgba(246,135,43,.7);
    overflow: hidden;
    color:#fff;
    padding:4px 0px;
}

li.completedTask {
    background: #f0f0f0;
}

.titles , tr.titles{
    font-size: 1.2em;
    font-weight: bold;
    background: rgba(172,205,55,.3);
    overflow: hidden;
    padding: 5px 0px;
}

fieldset h3 {
    border-bottom: 2px solid #777!important;
}

form input, form select, form textarea {
    width: 95%;
    padding: 10px;
    border-radius: 6px;
}

form input[type="checkbox"], form input[type="radio"] {
    width: initial;
}

form input, form textarea
{
    background: #fcfcfc;    
    border: 1px solid #ccc;
}

form input:disabled, form textarea:disabled {
	background: #aeaeae;
    color: #fff;
    border: 1px solid #777;
}

form#qaCheckList {
    height: 125vh;
    overflow-y: scroll;
    overflow-x:hidden;
}

input.form-control:disabled {
    color: #999;
}

.liveDNS {
    overflow: hidden;
    padding: 20px 10px;
}

form.login {
    max-width: 400px;
    margin: 0px auto;
}

.glyphicon.green {
    color: green;
}

.invalidPunches {
    font-size: 25px;
    color: red;
    text-transform: uppercase;
}

input, select, textarea {
    width: 95%;
    padding: 10px;
    border-radius: 6px;
    color:#333;
}

ul.key {
    list-style:  none;
    text-align:  center;
}

ul.key li:nth-child(odd) {
    background: #fff!important;
}

.key li {
    display: inline-block;
    padding: 5px 30px;
}

.newNote textarea, .newTask textarea, .newItem textarea
{
    color: #777;
}

.newProjectNotes textarea {
    min-height: 100px;
}

input#projectEstimate.success {
    border: green 2px solid;
}

input[type="checkbox"], input[type="radio"] {
    width: initial;
}

input, textarea
{
    background: rgba(246,136,39,0.35);    
    border: 1px solid #fafafa;
	color:#000;
}

input[type="submit"] {
    background: #f68922;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.invalidPunches {
    padding: 5px 8px;
    margin-right: 7px;
    display: inline-block;
}

#itemList .large {
    font-size: 36px;
    cursor:pointer;
}

#itemList .well div {
    margin-bottom: 8px;
}

#itemList .well {
	background: rgba(246,136,39,.4);
}

#itemList input[type=number]::-webkit-inner-spin-button, 
#itemList input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

#itemList input {
	padding: 10px 5px;
}

.fa.green
{
    color:#a8cb3d;
}

.fa.orange
{
    color:#fdd7b2;
}

.actionIcons {
    font-size: 24px;
}

.addProject fieldset a fa {
	font-size: 2em;
    padding: 8px;
}

.addProject fieldset a:hover {
	text-decoration:none;
}

#contacts {
    overflow: hidden;
}

	#contacts fieldset {
		clear: both;
	}


.clientContactInfo h3 {
    margin-top: 0px;
}	

#clientInfo .row {
    overflow:hidden;
    margin-top:15px;
}

#contactInfo .row {
    overflow:hidden;
    margin-top:15px;
}
	
.contactInfo {
    margin: 5px;
    padding: 10px 10px 0px;
}

.dropdown-menu>li>a {
    text-decoration: none;
}

#dueDatesHome a {
	color:#000;
}

#dueDatesHome .row {
	overflow:hidden;
	padding:3px;
}

@media screen and (min-width:1024px){
    ul.emailUserList {
        column-count: 2;
    }    
}

#newProjectDetails fieldset
{
    display: none;
    border: 1px solid #ccc;
    padding: 0px 20px 20px;
    margin: 15px 0px;
    border-radius: 8px;
}

ul#openTasktypes {
    list-style: none;
    padding-left: 0px;
}

ul#openTasktypes li {
    display: inline-block;
    margin: 5px 0px;
}

h2.tasksHeaderActive {
    display: block;
    background: #ACCD37;
    font-size: 15px;
    text-align: center;
    color: #fff;
    padding: 8px;
}

h2.tasksHeaderInactive {
    display: block;
    background: #F68921;
    text-align: center;
    font-size: 15px;
    padding: 8px;
}

h2.tasksHeaderInactive a {
    color:#fff;
}

h2.tasksHeaderInactive a:hover {
    text-decoration:none;
}

h2.tasksHeaderInactive:hover {
    background:#ACCD37;
}

input.profit {
    color: green;
    border: green 2px solid;
}

input.loss {
    color: red;
    border: red 2px solid;
}

.lastNote {
    color: #555;
    font-size: 1em;
    font-style: italic;
}

.lastProjectNote {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 95%;
  color: #333;
}

.mainBody {
    background: rgba(255,255,255,.9);
    padding: 10px 25px 20px;
}

.bg-light {
    background:#fefefeee;
}

.mce-tinymce {
    clear: both;
}


.noSpinners::-webKit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noSpinners::-webKit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

option.addNew {
    background: red;
    color: white;
}

#pendingBilling > div {
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.pmSummary {
	min-width:600px; 
	margin:0px auto;
	font-size: 17px;
}

.pmSummary tr:nth-child(even) {
	background:#eee;
}

.pmSummary td {
	padding:8px;
	
}

fieldset#projectDetails {
    width: 100%;
}

pre {
	white-space: pre-wrap;
}

#projectBudgetPct {
    min-height: 35px;
}

.projectClientName {
    font-weight: 700;
}

#projectDetails form.form-inline {
    overflow: hidden;
    margin-bottom: 15px;
}

#projectDetails h2.projectClient {
    margin-top: 0px;
}

.projectDetails div {
    margin-bottom: 5px;
}

.projectList
{
    border-right: 1px solid #ccc;
}

.projectList ul {
    list-style: none;
    padding: 5px 5px 5px 0px;
}

.projectList li
{
   border-bottom: dotted 1px gainsboro;
   padding: 5px 0px;
}

.projectList li:nth-child(odd) {
    background: #f7f7f7;
}

.projectListTable {
    margin-bottom:15px;
    background: rgba(255,255,255,.7);
}



.projectListTable tr {
    height:65px;
    border-bottom: 2px dotted #ccc;
}

.projectListTable td {
    padding:2px 8px;
}

.projName, .taskName {
   width:95%;
   text-overflow:ellipsis; 
   white-space:nowrap; 
   overflow:hidden;
}

 .projectClient {
	width:100%;
	text-overflow:ellipsis; 
	white-space:nowrap; 
	overflow:hidden;
 }
 
 .projectDates .fa {
    margin-top: 15px;
    text-align: right;
    font-size: 1.4em;
}

.projectList li.active {
	border-left: 3px solid #f68922;
	padding-left: 7px;
	background: #f7f7f7;
}

.projectDates .row {
    border-bottom: dotted 1px #dedede;
}

.projectDates .row
{
    overflow:hidden;
    padding:5px;
}

.projectTabs li a {
    text-decoration: none!important;
    color:#777;
}

.projectTitle {
    font-size: 1.2em;
    font-weight: 500;
}

.reminderSet {
    background: #d9edf7!important;
}

:required {
    border: 2px solid lightsalmon;
}

.noteTypeSelect li {
    list-style: none;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #ccc;
    margin: 5px 3px;
}

ul.noteTypeSelect {
    padding: 0px;
}

.fa.warning {
    color: red;
    font-weight: bold;
    margin-left: 2px;
}

input.warning {
    border: 1px solid red;
    color:red;
}

.row.note {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.note pre {
    max-height: 500px;
}

.newNote, .newTask, .newItem {
    display: none;
    background-color: #ACCD37;
    padding: 15px 0px 25px;
    margin: 15px 0px;
    color:#fff;
	overflow:hidden;
}

pre {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
	padding:0px;
}

#projectDetails {
    float: left;
	width:79%;
    padding: 5px 25px;
    margin:0px .25%;
}

span.providerLogo {
     margin-left: 15px;
}

#searchProjects {
    border: 1px solid #ACCD37;
    padding: 15px;
    border-radius: 8px;
    margin: 5px;
}

#searchProjects h3 {
    color: #F68922;
}

#searchResults {
    clear: both;
}

.scrollHorizontal {
    overflow:auto;
}

select.form-control.userRoleSelect {
    -webkit-appearance: menulist-button;
    height: 140px!important;
}

.serviceItem {
    border: 1px solid #777;
    margin: 5px .5%;
    border-radius: 8px;
    background: #fefefe;
    display:inline-block;
    vertical-align:top;
}

.serviceItem:nth-child(even){
    background: #fefefe;
}

@media screen and (min-width:1024px){
    .serviceItem {
        
    width: 32%;
    }
}

@media screen and (min-width:1601px){
    .serviceItem {        
        width: 100%;
    }
}
@media screen and (min-width:768px) {
    .showMobile {
        display:none;
    }
}

@media screen and (max-width:768px) {
    .showMobile {
        display:inline-block;
    }
}

svg.googleDriveIcon {
    height: 20px;
    fill: #fff;
}

table.siteLiveReport pre {
    margin-top: 8px;
}

table.siteLiveReport td {
    padding: 5px;
}

table.siteLiveReport tr {
    border-bottom: 1px solid #ccc;
}

.taskListSide li {
    padding: 8px;
}

textarea.newNote, textarea.newTask, textarea.newItem {
    width: 100%;
    background:#fff;
}

.userTask {
    border-bottom: 1px solid#ccc;
    margin-bottom: 10px;
}

.newNote select, .newTask select, .newItem select {
    color: #777;
}

.newNote input[type="submit"], .newTask input[type="submit"], .newItem input[type="submit"] {
    color: #fff;
    background: #F68922;
    padding: 5px 40px;
}

.noteTypeSelect a {
    cursor: pointer;
}

.noteTypeSelect a:hover {
    text-decoration: none;
}


.addClientNote, .viewClientNotes
{
    display: none;
}

#addTask input, #addTask textarea {
    width: 100%;
    margin-bottom: 10px;
}

.pageHeading {
    padding: 8px;
}

.projectTaskList {
    margin-top: 10px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

    .projectTaskList li
    {
        border-bottom: 1px solid #f8f8f8;
        margin-bottom: 8px;
        padding: 12px 15px!important;
    }

.searchRow {
    padding: 7px 10px;
    margin-top: 3px;
}

#searchResults li:nth-child(odd) {
    background: #e7e7e7;
    color:#333;
}
	
.row.taskItem {
    background: #f3f3f3;
    overflow: hidden;
    margin-bottom: 8px;
    padding-bottom:5px;
    border: 1px solid #999;
    margin-top: 10px;
    border-radius: 5px;
}

.taskList .fa {
	font-size:1.5em;
}

.taskList .fa-user-plus {
	color:#ACCD37;
}

.taskList .fa-pencil-square-o {
	color:#F68922;
}

.fa-check-circle.green{
	color:green;
}

#taskAssn .row {
    padding: 3px 0px;
}

#taskAssn {
    background: #fefefe;
}

#taskAssn .row:nth-child(even) {
    background:#eee
}

.taskList .fa-spinner {
	color:orange;
}

.taskList .fa {
	margin-right:5px;
}

.taskList .fa-circle-thin {
    color: red;
}

.taskListItem {
    border-bottom: 1px dotted #ccc;
    overflow: hidden;
    margin-bottom: 8px;
}

.taskNote {
    border-bottom: 1px dotted #aaa;
    margin-bottom: 5px;    
	overflow:hidden;
	padding:5px 15px 15px;
}

.taskNote:last-of-type {
    border-bottom: none;
}

.taskListItem:last-of-type {
    border-bottom: none;
}

.taskListItemDetails
{
    clear:both;
}

.taskInstructions {
    background: rgba(246,137,34,.1);
    padding: 5px 15px 20px;
    border-radius: 5px;
}

#taskInstructions {
    background: rgba(246,137,34,.35);
    padding: 5px 8px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.taskClient, .projectClient {
    font-weight: 500;
    color: #F68922;
}

.taskTitle {
    color: #ACCD37;
    font-weight: lighter;
    text-transform:initial;
}

    .taskTitle a
    {
        color: #ACCD37;
    }

.taskTotalBilling {
    background: #ACCD37;
    overflow: hidden;
}

	.taskTotalBilling h3 {
		color: #fff;
	}
	
.row.taskTimes:nth-child(odd) {
    background: #fafafa;
}

.row.taskTimes {
    padding: 8px;
}
	
.fa-minus-circle {
	color:red;
}

i.fa.gray {
    color: #9a9a9a;
}

i.fa.red {
	color:red;
}

.summary {
	background-color:#ACCD37;
	overflow:hidden;
}

.summary h3, .summary h4 {
	color:#fff;
}

.listNames .row:nth-child(odd) {
    background: #eee;
}

.listNames .row {
    padding: 8px;
}

.greenText
{
    color:#ACCD37;
}

.usersList:nth-child(even) {
    background: #eee;
}

.usersList {
    overflow: hidden;
    clear: both;
    padding: 8px 0px;
}

.searchButtons button {
    margin: 3px 8px;
}

.strikeout {
	 text-decoration: line-through;
}

button.btn.btn-default.orange {
    background: #f68922;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.projectItems {
    border: 2px solid #F68827;
    margin: 10px 2px 20px;
    border-radius: 10px;
    padding: 8px 3px;
}

table.projectLog {
    width: 100%;
}

table.projectLog td {
    padding: 3px 5px;
}

table.projectLog tr:nth-child(even) {
    background: #eee;
}

th {}

table.projectLog th {
    text-align: center;
}

.taskNav .nav-item {
    margin-bottom: 5px;
}

#taskInstructions {
    width: 100%;
}

.serviceTotal {
    font-weight: bold;
    font-size: 1.3em;
    color: red;
    border-top: 1px solid red;
}

.timeClock {
    margin: 0px auto;
    text-align: center;
}

	.timeClock .warning {
		color: red;
		font-weight: 700;
		font-size: .9em;
	}
	
.totalHours {
    position: absolute;
    bottom: 0px;
    left: 0px;
    text-align:  center;
    width: 100%;
    background: rgba(0,0,0,.1);
}

.totalAmt {
    font-weight: bold;
    color: green;
	float:right;
}

.allProjectsReport th.titles {
	padding:5px !important;
}
	
tr.allProjectsReport td {
    padding: 7px 5px;
    display: table-cell;
}

tr.allProjectsReport:nth-child(even) {
    background: #f7f7f7;
}
	
.vendorBillingDetails {
    width: 90%;
    margin: 0px auto;
    background:rgba(246,137,33,.2);
    clear:both;
    padding:0px 15px 11px;
	overflow:hidden;
}

.vendorBillingDetails input[type="text"] {
    margin-bottom: 5px;
}

.vendorBillingDetails .titles {
    background: none;
}

.vendorExpenseTotals {
    font-weight: bold;
	border-top: dotted #ccc 1px;
    margin-top: 3px;
}

.vendorInfo {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 5px;
    width: 33%;
    float: left;
    max-width: 350px;
	min-height:300px;
}

#vendorExpenseList tr:nth-child(even) {
    background: #eee;
}

#vendorExpenseList {
    width: 100%;
}

.viewBillDetails {
    border: 1px solid #777;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 5px 7px 5px #ccc;
}

.wkTotal {
    background: lightgrey;
    font-weight: bold;
}



/* ---------- iframes ---------- */

.listContainer {
    padding-bottom: 150%;
    position: relative;
}

.detailContainer {
    position: relative;
    padding-bottom: 50%;   
}

.timeClockContainer {
    position: relative;
    padding-bottom: 252%;
}

.timerContainer {
    position: relative;
    padding-bottom: 65%;
}

.timerStatus {
    color: red;
}

#timeClockTimer {
    display: block;
    margin: 10px 5px;
    background: #ACCD37;
    padding: 8px 5px;
    color: #fff;
    border-radius: 5px;
}

.viewTimeClock {
	margin:0px auto;
}

.viewTimeClock th, .viewTimeClock td {
    border: 1px solid #ccc;
	padding:5px;
    min-width: 55px;
    text-align: center;
}

iframe {
    height: 100%;
    position:absolute;    
    border: none;
    padding: 5px 15px;
}

iframe#muteYouTubeVideoPlayer {
    padding: 0px;
    z-index: -1;
    position: fixed;
}

body.iframe {
    overflow-x: hidden;
    padding: 0px 15px;
}


/* ---------- Footer ---------- */
footer
{
    min-height: 25px;
    background: rgba(0,0,0,.8);
    padding:15px;
    color:#fff;
    /* position: fixed;
    width: 100%;
    bottom: 0px; */
}

    footer a
    {
        color:#eee;
    }

/* ---------- Responsive ---------- */
@media screen and (max-width:768px)
{
    header img
	{
        width: 100%;
        height: auto;
    }
	
    .calendarHeader { 
        display:none;
    }
    
    .dayPunch {
		width: 47.5%;
		max-width: initial;
		margin: 1.25%;
	}
}

@media screen and (max-width:1600px) {
	#projectDetails {
		width:100%;
	}
}

.programmerQuestion
{
    background-color: red;
    font-weight: 700;
    color:#fff;
    padding:5px 15px;
}

.programmerNote {
    color:#000;
    background:yellow;
    padding:5px 15px;
    clear:both;
}

.programmerNote:before {
    content: 'Programmers Note: ';
    color: red;
}

ul.projectDocList {
    list-style: none;
    padding: 0px;
}




@media screen and (min-width:1200px){
    .ui-dialog.ui-corner-all.ui-widget.ui-widget-content.ui-front.ui-draggable.ui-resizable {
        max-height:725px!important;
        max-width:1200px!important;
        overflow:scroll;
    }
    
    ul.projectDocList {
        column-count: 3;
    }
}

div#clientNote {
    position: fixed;
    width: 80vw;
    background: white;
    z-index: 500;
    top: 15%;
    left: 10%;
    padding: 25px;
    overflow: auto;
    height: 70vh;
}

#contactDomainList, #contactProjectList {
    max-height:400px;
    overflow-y:auto;
}

.bg-primary button.close {
    color: #fff;
    text-shadow: none;
    opacity: .7;
}

.boldText {
    font-weight: 600;
}

@media screen and (min-width:1024px){
    ul.userTaskTimeunassignedList {
        column-count: 3;
    }
}

div.projectDetailsText {
    height: 200px;
    overflow: scroll;
}

table#taskTimeLoggedToday {
    max-height: 75vh;
}

div#taskInstructions img {
    width: 100%;
    max-width:1100px;
}

#domainDetailsPage form#domainContacts {
    max-height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
}

img.userAVatar {
     max-width: 100px;
     max-height: 100px;
}

img.userAvatarProfile {
     max-height: 300px;
}

ul.siteUpdateData {
	max-height: 250px;
	overflow-x: hidden;
	overflow-y: scroll;
}

@media screen and (min-width:1024px){
	ol.wpUpdateSteps {
		column-count: 2;
	}
}

td.ssl-30 {
	background: rgba(128, 255, 128, .3);
}

#projectSearchResults tr.lastWorked7 {
	background: rgba(255, 0, 0, .3) !important;
}

#projectSearchResults tr.lastWorked7:nth-of-type(odd) {
	background: rgba(255, 0, 0, .2) !important;
}

#projectSearchResults tr.lastWorked3 {
	background: rgba(255, 240, 0, .3) !important;
}

#projectSearchResults tr.lastWorked3:nth-of-type(odd) {
	background: rgba(255, 240, 0, .2) !important;
}

span.notificationCount {
	display: block;
	position: absolute;
	right: 15px;
	bottom: 30px;
	text-align: center;
	width: 50px;
}

.image-preview {
    background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), 
                      linear-gradient(-45deg, #ccc 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #ccc 75%), 
                      linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    padding:0px!important;
}

.smallFont {
    font-size: .85em;
}

.userNotes30days {
    max-height: 250px;
    overflow-x: auto;
}


/* multi-level dropdown support (Bootstrap 4) */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -0.25rem;
  margin-left: 0.1rem;
}
.dropdown-submenu > .dropdown-toggle::after {
  content: "▸";
  float: right;
  border: none; /* override default caret */
}


/* keep the main dropdown scrollable if it gets tall */
#reports-menu {
  max-height: 70vh;
  overflow-y: auto;
}

/* visual tweaks for the headers and children */
.dropdown-section { font-weight: 600; }
.dropdown-subpanel .dropdown-item { font-weight: 400; }
.dropdown-subpanel {
    border-top:1px solid #999;
}

/* caret that rotates on expand */
.dropdown-section .caret {
  margin-left: .5rem;
  transition: transform .2s;
}
.dropdown-section[aria-expanded="true"] .caret {
  transform: rotate(180deg);
}

/* right-pointing caret by default; rotates down when open */
.dropdown-section .caret {
  display: inline-block;
  width: 0; height: 0;
  margin-left: .5rem;
  vertical-align: middle;
  border-top: .3rem solid transparent;
  border-bottom: .3rem solid transparent;
  border-left: .35rem solid currentColor; /* inherits text-info color */
  transition: transform .2s;
}

.dropdown-section[aria-expanded="true"] .caret {
  transform: rotate(90deg); /* points down when open */
}

th.totalEarningsColumn {
    border-top: 1px solid green!important;
    border-left: 1px solid green!important;
    border-right: 1px solid green!important;
}

tbody td.totalEarningsColumn {
    border-left: 1px solid green!important;
    border-right: 1px solid green!important;
}

tfoot td.totalEarningsColumn {
    border-left: 1px solid green!important;
    border-right: 1px solid green!important;
    border-bottom: 1px solid green!important;
}

span.badge.badge-success.clientLinkBadge {
    float: right;
    margin-right: 15px;
}

.amount.due {
    font-size: 2rem;
}