/* BEGIN STYLESHEET */
/* Direct stylesheet authoring is an advanced feature. Knowledge of CSS required.*/

.table-container .tableFilter .filterResults{
	flex: 0 0 auto;
	padding-right: 10px;
	opacity: 0.8;
}

/*Change date time picker to start on a monday, this is a total hack*/
.iaDateRangePicker{	height: auto;}
.iaDateRangePicker .calendarBar {grid-template-columns: none;}
.calendarBar > div:nth-child(1) { grid-area: 1/8/1/8 !important;} 
.iaDateRangePicker .calendar{grid-template-columns: none;} 
.calendar > div[style$="2;"]{ grid-column-start: 8 !important; grid-column-end: 8 !important;}
.calendar > div[style^="grid-area: 1"]{ grid-row-start: 2 !important;}
.calendar > div[style^="grid-area: 2"]{ grid-row-start: 3 !important;}
.calendar > div[style^="grid-area: 3"]{ grid-row-start: 4 !important;}
.calendar > div[style^="grid-area: 4"]{ grid-row-start: 5 !important;}
.calendar > div[style^="grid-area: 5"]{ grid-row-start: 6 !important;}
.calendar > div[style^="grid-area: 6"]{ grid-row-start: 7 !important;} 
.calendar > div[style$="2;"][style^="grid-area: 1"]{ grid-row-start: 1 !important;}
.calendar > div[style$="2;"][style^="grid-area: 2"]{ grid-row-start: 2 !important;}
.calendar > div[style$="2;"][style^="grid-area: 3"]{ grid-row-start: 3 !important;}
.calendar > div[style$="2;"][style^="grid-area: 4"]{ grid-row-start: 4 !important;}
.calendar > div[style$="2;"][style^="grid-area: 5"]{ grid-row-start: 5 !important;}
.calendar > div[style$="2;"][style^="grid-area: 6"]{ grid-row-start: 6 !important;} 
.iaTimePickerInput--wrapper{ margin-top: 30px; }


@keyframes spinner {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg); }
}

/*Hide the file uploader overlay*/
.psc-HideUploader .file-upload-modal{
	display: None;
}
/*Hide the file uploader overlay*/
.popup-modal .ia_componentModal--fullViewOverlay {
	display: None;
}

.psc-attachment-link a { 
  color: var(--neutral-90);
} 

.psc-attachment-link a::after { 
  content: var(--attachment-link-name); 
} 

/*Overrides*/

/*file upload*/

.file-upload
{
	background-color: transparent;
	border: none
}

/* Chart label leader lines*/
.chart-wrapper polyline {
    stroke: var(--neutral-80);
    stroke-opacity: 0.6;
}

.chart-wrapper text {
    fill: var(--neutral-90);
}

/*dropdown*/
.iaDropdownCommon_options_modal>div:first-child {
    max-height: 400px !important;
}

/*input*/
.ia_inputField__spinner_button {
    background-color: transparent;
}

.ia_inputField__spinner_svg {
    stroke: var(--callToAction);
    fill: var(--callToAction);
}

/*scrollbars*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--neutral-40); 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--neutral-80); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--callToAction--hover); 
  }

/*welcome*/
.psc-Animation\/TypingText {
    color: #00DD35;
    font-family: monospace;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    animation: typing-text 2s steps(20), blink 0.5s infinite alternate;
    border-right: 3px solid #00DD35;
}

@keyframes typing-text {
    from{
        width: 0;
    }
    to{
        width: 20ch;
    }
}

@keyframes blink {
    from{
        border-color: transparent;
    }
    to{
        border-color: #00DD35;
    }
}

.psc-Animation\/Hamburger\/ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden
}

.psc-Animation\/Hamburger\/ham_active {
  transform: rotate(45deg);
}

.psc-Animation\/Hamburger\/line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #FAFAFA;
  stroke-width:5.5;
  stroke-linecap:round;
}

.psc-Animation\/Hamburger\/top {
  stroke-dasharray: 40 139;
}
.psc-Animation\/Hamburger\/bottom {
  stroke-dasharray: 40 180;
}

.psc-Animation\/Hamburger\/top_active {
  stroke-dashoffset: -98px;
}

.psc-Animation\/Hamburger\/bottom_active {
  stroke-dashoffset: -138px;
}

.psc-BlockShuffle{
	animation: blockShuffle 2.4s linear infinite;
	animation-delay: -2.4s;
}

@keyframes blockShuffle {
	8.33% {
		x:13px;
		y:1px;
	}
	25% {
		x:13px;
		y:1px;
	}
	33.3% {
		x:13px;
		y:13px;
	}
	50% {
		x:13px;
		y:13px;
	}
	58.33% {
		x:1px;
		y:13px;
	}
	75% {
		x:1px;
		y:13px;
	}
	83.33% {
		x:1px;
		y:1px;
	}
}

/*Documentation Markdown Styles*/
[data-component="ia.display.markdown"] blockquote {
  color: var(--neutral-80);
}

[data-component="ia.display.markdown"] table {
  color: var(--neutral-90); 
}

[data-component="ia.display.markdown"] table tr {
  border-top: 1px solid var(--containerBorder);
  background: var(--neutral-10); 
}

[data-component="ia.display.markdown"] table tr:nth-child(2n) {
  background: var(--neutral-20); 
}

[data-component="ia.display.markdown"] table th,  [data-component="ia.display.markdown"] table td {
  border: 1px solid var(--neutral-80); 
}

#popup-TicketDetial .client-root .popup .popup-header.header-no-title {
    display: none;
}

/*Progress bar value add %*/
.psc-Common\/ProgressBarValue::After{
    content:" %";
}
/* BEGIN STYLE CLASSES */
.psc-ActionButton {
  background-color: transparent;
  border-style: none;
  color: var(--callToAction);
  margin: 2px;
  padding: 5px;
  text-transform: uppercase;
  fill: transparent;
}
@keyframes psc-ActionButton-0-anim {
  0% {
    color: var(--callToAction--hover);
  }
  100% {
  }
}
.psc-ActionButton:hover {
  animation-name: psc-ActionButton-0-anim;
  animation-delay: 0s;
  animation-direction: reverse;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}
.psc-ActionButton:focus {
  border-style: none;
  box-shadow: transparent;
  outline-style: none;
}
@keyframes psc-ActionButton-2-anim {
  0% {
    background-color: transparent;
    color: var(--callToAction--disabled);
  }
  100% {
  }
}
.psc-ActionButton:disabled {
  animation-name: psc-ActionButton-2-anim;
  animation-delay: 0s;
  animation-direction: reverse;
  animation-duration: 0s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

.psc-Animation\/BlockShuffle {
}

.psc-Animation\/Hamburger\/bottom {
}
.psc-Animation\/Hamburger\/bottom:active {
}

.psc-Animation\/Hamburger\/bottom_active {
}

.psc-Animation\/Hamburger\/ham {
  cursor: pointer;
}
.psc-Animation\/Hamburger\/ham:active {
}

.psc-Animation\/Hamburger\/ham_active {
}

.psc-Animation\/Hamburger\/line {
}

.psc-Animation\/Hamburger\/top {
}
.psc-Animation\/Hamburger\/top:active {
}

.psc-Animation\/Hamburger\/top_active {
}

.psc-Animation\/NewStyle {
}

.psc-Animation\/TypingText {
  color: #00DD35;
  font-family: monospace;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

.psc-ColorPicker\/color_slider {
  padding-left: 10px;
  padding-right: -3px;
}

.psc-ColorPicker\/color_slider_handle {
  background-position: } .psc-ColorPicker\/color_slider_handle .slider-handle {width: 5px; margin-top: -10px; height: 24px; border-width: 1px; border-radius: 0;} {;
}

.psc-ColorPicker\/rounded_border {
  border-color: #D2D2D2;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.psc-CommandButton {
  margin-left: 10px;
}

.psc-Common\/ActionRow {
  margin-top: 10px;
  padding: 5px;
}

.psc-Common\/NumericInput {
  background-color: #FFFFFF00;
  border-style: none;
  font-size: 12px;
  stroke: #FFFFFF00;
  fill: #FFFFFF00;
}
.psc-Common\/NumericInput:focus {
  background-color: #FFFFFF00;
  border-style: none;
  color: var(--label);
  outline-style: none;
  stroke: #FFFFFF00;
  fill: #FFFFFF00;
}
.psc-Common\/NumericInput:disabled {
  background-color: transparent;
  border-style: none;
  color: var(--label);
  cursor: auto;
  outline-style: none;
  stroke: transparent;
  stroke-width: 0;
  fill: transparent;
}

.psc-Common\/NumericLabel {
  padding: 4px;
  text-align: right;
}

.psc-Common\/ProgressBarValue {
}

.psc-ErrorText {
  color: red;
  font-size: 0.7em;
  text-align: right;
}

.psc-Header\/Button {
  background-color: transparent;
  color: #FAFAFA;
}

.psc-Header\/DropDown {
  margin-bottom: 10px;
  margin-top: 10px;
}

.psc-Header\/Header {
  background-color: #003E69;
  color: #E7F5FF;
  font-size: 14px;
  line-height: 17px;
  fill: #FFFFFF;
}

.psc-Header\/Icon {
  cursor: pointer;
  fill: #FFFFFF;
}

.psc-HideUploader {
}

.psc-IPAM\/InputRow {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}

.psc-IPAM\/Network {
  border-color: #67778C;
  border-style: solid;
  border-width: 2px;
  padding: 10px;
}

.psc-IPAM\/Title\/Icon {
  fill: var(--neutral-90);
}

.psc-IPAM\/Title\/Text {
  color: var(--neutral-90);
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  margin-left: 6px;
  fill: var(--neutral-90);
}

.psc-IPAM\/Title\/Title {
  background-color: var(--neutral-30);
  border-bottom-color: var(--neutral-60);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-top-color: var(--neutral-60);
  border-top-style: solid;
  border-top-width: 1px;
}

.psc-IPAM\/greenstroke {
}

.psc-Menu\/All_Header {
  background-color: var(--neutral-80);
  color: var(--neutral-10);
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-transform: none;
}

.psc-Menu\/Item_Horizontal {
  background-color: unset;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}
.psc-Menu\/Item_Horizontal:hover {
  background-color: #0D72B633;
}

.psc-Menu\/Item_Vertical {
  background-color: var(--neutral-20);
  border-bottom-style: none;
  color: var(--neutral-80);
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}
.psc-Menu\/Item_Vertical:hover {
  background-color: var(--callToActionHighlight);
}

.psc-Menu\/Menu_Horizontal {
  background-color: #00000000;
  border-style: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #FFFFFF;
}

.psc-Menu\/Menu_Vertical {
  background-color: transparent;
}

.psc-Page\/ActionRow {
  padding: 5px;
}

.psc-Page\/Alarm\/Alarm {
  border-bottom-style: none;
  border-left-color: var(--neutral-40);
  border-left-style: solid;
  border-left-width: 1px;
  border-right-color: var(--neutral-40);
  border-right-style: solid;
  border-right-width: 1px;
  border-top-style: none;
}

.psc-Page\/Alarm\/Page {
  background-color: var(--neutral-20);
}

.psc-Page\/Bold {
  font-weight: bold;
}

.psc-Page\/Margins {
  margin-left: 12px;
  margin-right: 12px;
}

.psc-Page\/Page {
  font-size: 1em;
  line-height: 20px;
}

.psc-Page\/Text {
  color: var(--neutral-100);
  font-size: 14px;
  line-height: 20px;
}

.psc-Project\/Invoicing\/ClientAccordianBody {
  margin: 10px;
}

.psc-Project\/Invoicing\/ClientAccordianHead {
  padding: 10px;
}

.psc-Table\/CellStyle {
  overflow: hidden;
  padding: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.psc-Table\/HolidayHeader {
  background-color: var(--callToAction);
  color: var(--neutral-10);
}

.psc-TaskItem\/TaskItem {
  background-color: var(--input);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 5px;
  padding: 10px;
}
.psc-TaskItem\/TaskItem:hover {
  background-color: var(--callToActionHighlight);
  cursor: pointer;
}

.psc-TaskItem\/TaskItemDescription {
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}
@media (max-width: 400px) {
  .psc-TaskItem\/TaskItemDescription {
    font-size: 0.7em;
  }
}

.psc-TaskItem\/TaskItemDisabled {
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--neutral-40);
  font-style: italic;
  font-weight: lighter;
  margin: 5px;
  padding: 10px;
}
.psc-TaskItem\/TaskItemDisabled:hover {
  border-color: var(--neutral-50);
}

.psc-TaskItem\/TaskItemName {
  font-size: 1.5em;
  font-weight: bold;
}
@media (max-width: 400px) {
  .psc-TaskItem\/TaskItemName {
    font-size: 1em;
    font-weight: bold;
  }
}

.psc-TaskItem\/TaskItemRole {
  font-size: 1em;
  font-weight: normal;
  text-align: right;
}
@media (max-width: 400px) {
  .psc-TaskItem\/TaskItemRole {
    font-size: 0.8em;
    font-weight: normal;
    text-align: right;
  }
}

.psc-TaskItem\/TaskItemSelected {
  background-color: var(--callToAction);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: var(--neutral-10);
  margin: 5px;
  padding: 10px;
}
.psc-TaskItem\/TaskItemSelected:hover {
  border-color: var(--callToActionHighlight);
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
}

.psc-TextEllipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.psc-Time\/TimeDayHeader {
  font-size: 1.4em;
  font-style: italic;
  text-align: center;
}

.psc-Time\/TimeEntryInput {
  background-color: transparent;
  border-style: none;
  padding: 2px;
  text-align: center;
}
.psc-Time\/TimeEntryInput:disabled {
  background-color: transparent;
  border-style: none;
  cursor: not-allowed;
  padding: 2px;
  text-align: center;
}

.psc-Time\/ToilAccrualLabel {
  background-color: var(--container);
  color: var(--callToAction);
  font-size: 1.1em;
  font-style: italic;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
@media (max-width: 300px) {
  .psc-Time\/ToilAccrualLabel {
    font-size: 1em;
  }
}

.psc-Title\/Icon {
  fill: var(--neutral-90);
}

.psc-Title\/Text {
  color: var(--neutral-90);
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  margin-left: 6px;
  fill: var(--neutral-90);
}

.psc-Title\/Title {
  background-color: var(--neutral-30);
  border-bottom-color: var(--neutral-60);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-top-color: var(--neutral-60);
  border-top-style: solid;
  border-top-width: 1px;
}

.psc-ToolButton {
  background-color: #FFFFFF00;
  border-style: none;
  color: var(--neutral-80);
  fill: #FFFFFF00;
}
.psc-ToolButton:hover {
  border-style: none;
  box-shadow: transparent;
  outline-style: none;
  fill: var(--neutral-90);
}
.psc-ToolButton:focus {
  border-style: none;
  box-shadow: transparent;
  outline-style: none;
}
.psc-ToolButton:disabled {
  color: var(--neutral-60);
}

.psc-Validation\/InvalidBorder {
  border-color: var(--error);
  border-style: solid;
  border-width: 1px;
}

.psc-ViewOnlyLabel {
  border-color: var(--neutral-50);
  border-style: solid;
  border-width: 1px;
  padding: 5px;
}

.psc-zzzzTest {
}
.psc-zzzzTest:hover {
  stroke: lightgreen;
  stroke-width: 1;
}

@keyframes psc-Animation\/Blink-anim {
  0% {
    color: var(--success);
    font-size: 1em;
  }
  100% {
    color: var(--error);
  }
}
.psc-Animation\/Blink {
  animation-name: psc-Animation\/Blink-anim;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes psc-Header\/Alarm_Active-anim {
  0% {
    color: #FFFFFF;
    fill: #FFFFFF;
  }
  100% {
    color: #FFCCCC;
    fill: #FFCCCC;
  }
}
.psc-Header\/Alarm_Active {
  animation-name: psc-Header\/Alarm_Active-anim;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes psc-HoldText-anim {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.40;
  }
}
.psc-HoldText {
  animation-name: psc-HoldText-anim;
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

@keyframes psc-Validation\/Invalid-anim {
  0% {
    color: #FF0101;
    font-weight: bold;
  }
  100% {
    color: #F64200;
  }
}
.psc-Validation\/Invalid {
  animation-name: psc-Validation\/Invalid-anim;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
