@import url("../OriginalTheme/naverisk-style.css");

html, body 
{
	padding: 0px;
	margin: 0px;
	background-color: var(--nv-color-page-bg);
	height: 100%;
	width: 100%;	
    border: none;
    overflow: hidden;
}
html, body, table, div, span {
	/*Set the default font and text size for all of the core elements*/
	font-family: 'Open Sans', arial ;
	font-size: 10pt;
}

html, body, table, div, span {
	color: var(--nv-color-font-universal);
}

input {
	background-color: var(--nv-color-input-bg-base);
	color: var(--nv-color-font-base-text);
	border: 1px solid var(--nv-color-border-base);
}

/* Prevent Chrome / Edge / WebKit autofill from interferring with input theme */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	border: 1px solid var(--nv-color-border-base) !important;
	-webkit-box-shadow: 0 0 0 1000px var(--nv-color-input-bg-base) inset !important;
    -webkit-text-fill-color: var(--nv-color-font-base-text) !important;
    caret-color: var(--nv-color-font-base-text) !important; /* Cursor color */
    transition: background-color 5000s ease-in-out 0s; /* Prevent yellow flash */
}

/* Prevent firefox autofill from interferring with input theme  */
input:-moz-autofill,
input:-moz-autofill:focus,
input:-moz-autofill:hover {
    background-color: var(--nv-color-input-bg-base) !important;
    color: var(--nv-color-font-base-text) !important;
	caret-color: var(--nv-color-font-base-text) !important; /* Cursor color */
    background-image: none !important;	/* stops yellow gradient layer */
    box-shadow: 0 0 0 1000px var(--nv-color-input-bg-base) inset !important;	/* overrides inset yellow glow */
    border: 1px solid var(--nv-color-border-base) !important;
	transition: background-color 9999s ease-in-out 0s !important;	/* Prevent yellow flash */
}

input:not([type="image"]):not([type="button"]):not(.tox-textfield), textarea {
  box-sizing: initial;
}

form{
	margin-bottom: 0px;
}

* {
	scrollbar-color: var(--nv-color-scrollbar-thumb-bg) var(--nv-color-scrollbar-track-bg)
}

a {
	color: var(--nv-color-font-base-text);
	/*font-size: 10pt;*/
	text-decoration: none;
	font-weight: normal;
	font-family: 'Open Sans', arial ;
	cursor:pointer;
}
a:link {text-decoration:none;  }
a:hover {text-decoration:underline;  }

.nv-grid-layout {
	background-color: var(--nv-color-page-bg);
	color: var(--nv-color-font-base-text);
}
 
table 
{
	border: 0px;
}

img 
{
	border: 0px;
	/*behavior: url(/iepngfix.htc);*/
}

.fullHeightForm
{
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0px;
	right:0px;
}

.fullHeightTable
{
	height: 100%;
	width: 100%;	
}

.fullHeightDiv
{
	height: 100%;
	width: 100%;	
}

.fullHeightIframe
{
	margin: 0; 
	padding: 0; 
	height: 100%;
	width: 100%;
	display: block; 
	border: 1px solid red;
}

.detailsIFrame 
{
	width: 100%;
}

.HomePannel
{
	height: calc(100% - 8px);
	width: calc(100% - 2px);
	border: none;
	overflow: auto;
}
.HomePannel.RecentlyPinned, .HomePannel.MyActivities 
{
		padding-top: 53px;
}
.HomePannel.MyProfile
{
	height: 100%;
	width: 100%;
}
#HomePanel .overTabbedPannel
{
	width: calc(100vw - 85px);
    height: calc(100vh - 105px);
    overflow: hidden;
    padding: 0px;
}

/* The column on the left of the device details screen
   The width of the text at the top, and the menu is controlled by this setting...
*/ 
.deviceDetailsMenuColumn 
{
	width: 170px;
}

/* Used to pad out the data panels at the top of the device details page */
div.deviceDetailsPaddedDataPanel 
{
	padding-left: 5px;
	width: 100%;
	min-height: 22px;
}
.deviceDetailsPaddedDataPanel .PackageButton{
	display: inline-block;
	margin-bottom: 20px;
}

@media only screen and (max-width: 1918px)  {
    .deviceDetailsPaddedDataPanel span.PackageButton, .deviceDetailsPaddedDataPanel td.PackageButton.Tab span{
	   font-size: 13px;
    }
}
/*
/*This is intended for use if the current small-size needs something even smaller 
@media only screen and (max-width: 1600px) {
    .deviceDetailsPaddedDataPanel span.PackageButton, .deviceDetailsPaddedDataPanel td.PackageButton.Tab span{
	   margin-right: 10px;
    }
}
*/

/* The spacer column in between the left menu, and the right content */
.deviceDetailsColumnSpacer 
{
	width: 50px;
}

/* Used to pad out the data panels at the top of the event details panel */
.eventDetailsPaddedDataPanelHeadings
{
	padding-left: 5px;
	width: 100px;
}

.ClientTabPannel .Header .ControlHolder div
{
	white-space: nowrap;
}
.ClientTabPannel .Header .ControlHolder
{
	width: 1px;
}
.ClientTabPannel .Header .ControlHolder .combobox
{
	display: inline-block;
    vertical-align: middle;
    margin-bottom: 4px;
	margin-right: 10px;
}



.divInline
{
    float :left;
    display : inline;
}

.errorPanel
{
	background-color: var(--nv-color-panel-error-bg);
	border: 1px solid var(--nv-color-border-panel-error);
	margin-top: 5px;
	padding-top: 3px; /*0.25em; */
	padding-left: 20px;
	padding-right: 20px;
	color: var(--nv-color-font-error);
	font-family: 'Open Sans', arial ;
	font-size: 10pt;
	vertical-align: middle;
	display: none;
	cursor: pointer;
	
	/* We have to have the width and/or height values specified if we want ie's filter(alpha) to work...! */
	height: 24px;
}
.errorPanel.Tab
{
	width: 500px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.fadable{
    opacity: 1;
    transition: opacity 1.6s ease, all 1.4s ease;
}
span.fadable{
    display: inline-block;
    width: calc(100% - 42px);
    height: calc(1em + 16px);
}
span.fadable.doubbleLine {
    height: calc(2em + 16px);
    overflow: hidden;
}
span.fadable.doubbleLine.out {
    height: 0px;
}
.fadable.out{
    opacity: 0;
    height: 0px; 
    padding: 0px;
    border-width: 0px;
    border-color: transparent;
    overflow: hidden;
}

.centeredElement
{
	text-align: center;
}

.noWrapElement
{
	    font-family: 'Open Sans', arial ;
	vertical-align: top;
	white-space: nowrap;
}
.wrapElement {
	white-space: normal !important;
}
.columnSpacer 
{
	width: 30px;
}

.AjaxLoader
{
	/* We have to have the width and/or height values specified if we want ie's filter(alpha) to work...! */
	display: none;
	width: 24px;
	height: 24px;
}

.SmallAjaxLoader
{
	/* We have to have the width and/or height values specified if we want ie's filter(alpha) to work...! */
	display: none;
	width: 16px;
	height: 16px;
}


.layoutcontent
{
    overflow: auto;
    position: relative!important;
    padding-top: 5px;
	padding-bottom: 14px;
    height: calc(100vh - 66px);
}
.layoutcontent.Expanded
{
	height: calc(100vh - 5px)
}

.content
{
	background-repeat: repeat-x;
	width: 100%;
	height: 100%;
	background-color: var(--nv-color-page-bg);	
	padding-top: 10px;
}

.paddedContent 
{
	height: 100%;
	padding-left: 25px;
	padding-right: 20px;
}

.paddedDialogContent 
{
	/*height: 100%;*/
	padding-left: 17px;
	padding-right: 12px;	
}

.detailsContent 
{
	background-color: #ffffff;
	border-left: 1px solid #808080;
	border-right: 1px solid #808080;
	border-bottom: 1px solid #808080;
	
	padding: 10px;
	overflow: auto;
	
	/*
	position: relative;
	top: -18px;
	*/
}

.dialogScrollableContent
{
	background-color: var(--nv-color-dialog-scroll-content);
	border: 1px solid var(--nv-color-border-dialog-scroll-content);
	padding: 5px;
	overflow: auto;
}

.dialogScrollableContent.read-only, .dialogScrollableContent.read-only td
{
	background-color: var(--nv-color-panel-readonly-bg);
	color: var(--nv-color-input-disabled-text)  !important;
}

.dialogScrollableContentInnerPanel 
{
	width: 100%;
	font-size: 10pt;
	white-space: nowrap;
	
}

.dialogFooterPanel 
{
	padding-bottom: 18px;
	padding-top: 18px;
}

.successText 
{
	color: var(--nv-color-font-success);
}
div.successText 
{
	padding-left: 10px;
	text-indent: -10px;
}

.errorText 
{
	color: var(--nv-color-font-error);
	vertical-align: middle;
}

.warningText 
{
	color: #777777;
	font-size: 8pt;
}

/* CSS equivalent of the Fader object and AttachFaderToElement() function */
.Fadable
{
    transition: opacity 1s ease 0s;
    opacity: 1;
	display:inherit;
}
.Fadable.FadeOut{
    opacity: 0 !important;
}
.Fadable.Slider
{
	opacity: inherit;
	overflow: hidden;
	transition: 1s ease 0s;
	transition-property: height, padding, margin, border;
}
.Fadable.Slider.SlideOut
{
	height: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
	border: 0px !important;
}

/* the little panel that contains the lost connection image in the top right of the website */
.lostConnectionDiv 
{
	display: none;
	width: 64px;
	height: 64px;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 20;
	background-image: url(/Resources/Images/Icons/noRealtimeConnection.png);
}


/* Styles for the template details tables */
.templateGridTable 
{
	font-family: 'Open Sans', arial ;
	font-size: 8pt;
}

.templateGridTable th
{
	background-repeat: repeat-x;
	height: 20px;
	padding-left: 10px;
	padding-right: 10px;
	border: 0px;
	font-weight: initial; /*this overrides the built-in setting for th tags which is "bold" */
	color: var(--nv-color-font-base-text);
}

.templateGridTable td
{
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	color: var(--nv-color-font-base-text);
}

.PopupLegend
{
    position: absolute;
    padding: 10px;
    background-color: var(--nv-color-popup-legend-bg);
    border: 1px solid var(--nv-color-border-popup-legend);
	z-index: 40;
}

.PopupLegendFrame
{
    display: none;
    position: absolute;
    background-color: Transparent;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
	z-index: 40;
}

.PopupLegendShow, .PopupLegendShow:hover, .PopupLegendShow:active, .PopupLegendShow:focus
{
	margin-right: 2px;
    display: block;
    border: 0px;
    background: white;
    color: #90CAF9;
    font-size: 30px;
    overflow: hidden;
    height: 20px;
    width: 25px;
    line-height: 5px;
    font-weight: 900;
}

div.left2col {
	width: 50%;
	float: left;
}

div.right2col {
	width: 50%;
	float: right;
}
td.ImageMarker {
	max-width: 10px;
	overflow: visible;
	white-space: nowrap; 
	text-align: left;
}

div.footer {
	clear: both;
}

/* This needs to be more specific */
:disabled{
	cursor:not-allowed;
	color: var(--nv-color-input-disabled-text)  !important;

}

.PanelControls{
	width: 100%;
	padding-bottom: 4px;
}
.PanelControls .SqueezeControl{
	width: 1px;
    white-space: nowrap;
}
.PanelControls .LargeControl{
	width: initial;
	white-space: nowrap;
}
.PanelControls .Right{
	text-align: right;
}
.PanelControls .combobox{
	display: inline-block;
	margin-bottom: -5px;
	text-align: left;
}
.PanelControls .CheckHolder{
    padding-top: 5px;
}

.checkbox-group{
width: 100%;
display: block;
}
.checkbox-container{
    white-space: nowrap;
    display: inline-block;
    margin-right: 10px;
    padding-right: 18px;
    overflow: hidden;
    position: relative;
}
.checkbox-container input{
    position: absolute;
    margin: 0;
    top: 2px;
    right: 0;
}
.m-l-2 {
	margin-left: 2px !important;
}
.m-l-5{
    margin-left:5px;
}
.w-250{
    width:250px;
}

.m-20 {
    margin: 20px;
}

.v-a-t{
    vertical-align:top;
}
.fw-normal { font-weight:normal }

.div-vertically-centre {
    display: flex;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */

    align-items: center;
    -webkit-align-items: center; /* Safari 7.0+ */
}
.hide { display: none; }

.fs-30 {
    font-size: 30px !important;
}
#ClientsTabGridPanel {
	margin-top: 25px;
}
#deviceManagementPanelDetailsOver {
	padding: 0 4px;		/* Align header panel with underlying content panels */
}
#deviceManagementPanelDetailsOver > .TopRight.DeviceCopyLink {
	margin-top: -2px;
}
#deviceManagementPanelDetailsOver > .TopRight.DevicePin, #deviceManagementPanelDetailsOver > .TopRight.DeviceCopyLink {
	top: 4px;
}
#ticketCommunicationFeeds_Controls_FilterHolder :first-child {
	border-bottom: 1px solid gray;
	margin-bottom: .6rem;
}
@media only screen and (max-width: 920px)  {
    .DrawerBox .TopRight.DevicePin, .DrawerBox .new-ticket-pin {
		right: -80px;
	}
}
.TopRight.DevicePin, .new-ticket-pin{
	position: absolute;
	right: 10px;
	top: 8px;
}
.TopRight.DeviceCopyLink, .new-ticket-link {
	position: absolute;
	right: 100px;
	top: 8px;
}
.TopRight.DeviceCopyLink > svg, .new-ticket-link > svg {
	margin: 0px 3px 0px 0px;
}
	.TopRight.DevicePin, .TopRight.DeviceCopyLink {

		margin-left: 2px;
	}
.new-ticket-pin {
	margin-top: 2px;
}
.new-ticket-pin > svg {
	padding-bottom: 5px;
}
.clickable-link:hover:not(.disabled_link) {
	color: #3688BD;
}
.clickable-link:not(.disabled_link):hover {
	cursor: pointer;
	text-decoration: underline;
}
.clickable-link{
	color: #6d6d6d;
	color: inherit;
	display: inline-block;
}
.clickable-link svg{
	width: 16px; 
	height: 16px;
	vertical-align: middle;
	fill: var(--nv-color-svg-bg);
	overflow: hidden;
} 
#EventLog_Holder tbody > tr > td:first-child > table > tbody > tr:first-child > td{
    overflow: visible !important;
    padding-top: 0px;
}
#EventLog_Holder tbody > tr > td:first-child > table > tbody > tr:first-child > td .fa-icon-button{ 
   margin-left: 1px
}
#EventLog_Holder tbody > tr > td:first-child > table > tbody > tr:first-child > td div{ 
    display: inline-block;
    width: 1px;
    white-space: nowrap;
}
#EventLog_Holder tbody > tr > td:nth-last-child(1) > table > tbody > tr:nth-last-child(1) > td {
	padding-top: 9px;
}
#EventLog_Holder tbody > tr > td:nth-last-child(1) > table > tbody > tr:nth-last-child(2) > td {
	padding-top: 5px;
}
#EventLog_Holder tbody > tr > td:nth-last-child(3) > table > tbody > tr:nth-last-child(1) > td {
	padding-top: 9px;
}
#EventLog_Holder tbody > tr > td:nth-last-child(3) > table > tbody > tr:nth-last-child(2) > td {
	padding-top: 5px;
}
#EventLog_Holder tbody > tr > td:nth-last-child(5) > table > tbody > tr:nth-last-child(1) > td {
	padding-top: 9px;
}
#EventLog_Holder tbody > tr > td:nth-last-child(5) > table > tbody > tr:nth-last-child(2) > td {
	padding-top: 5px;
}

@media (min-width: 780px) {
	.ClientPannel .ClientTabPannel .mockPannel{
		overflow: hidden;
	}
}
.ClientPannel .ClientTabPannel .leftSection{
	width: 65%;
	min-width: 33em;
	float: left;
}
.ClientPannel .ClientTabPannel .leftSection td{
	overflow: hidden;
	text-overflow: ellipsis;
}
.ClientPannel .ClientTabPannel .rightSection{
	width: 33%;
	min-width: 30em;
	padding-right: 10px;
}
.ClientPannel .ClientTabPannel .rightSection table{
	padding-right: 1.8em;
}

div.mandatory {
	display: inline-block;
	background-image: var(--nv-image-mandatory-logo);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
}

.select-list {
	background-color: var(--nv-color-list-bg);
	border: 1px solid var(--nv-color-border-list);
	color: var(--nv-color-font-base-text);
	font-weight: normal;
	padding: 5px;
	appearance: none;
}

.select-list:focus {
	outline: none;
}

.select-list option:checked, .select-list:focus option:checked {
	background-color: var(--nv-color-list-selected-bg) !important;
	color: var(--nv-color-list-selected-text) !important;;
}

.row-inline {
	display: flex;
	align-items: flex-start;
	gap: 3px;
}

.loader-login, .loader-header {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	margin: 11px 0 0 14px;
}

.loader-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 14px;
	padding-bottom: 6px;
	font-size: 28px;
	color: #999999;
	width: 100%;
	height: 40px;
	gap: 20px;
}

.loader {
	font-size: 4px;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	animation: mulShdSpin 1.1s infinite ease;
	transform: translateZ(0);
}
@keyframes mulShdSpin {
  	0%,
	100% {
		box-shadow: 0em -2.6em 0em 0em #007BFF, 1.8em -1.8em 0 0em #b5b5b5, 2.5em 0em 0 0em #b5b5b5, 1.75em 1.75em 0 0em #b5b5b5, 0em 2.5em 0 0em #b5b5b5, -1.8em 1.8em 0 0em #b5b5b5, -2.6em 0em 0 0em #4389d5, -1.8em -1.8em 0 0em #1b72d1;
	}
	12.5% {
		box-shadow: 0em -2.6em 0em 0em #1b72d1, 1.8em -1.8em 0 0em #007BFF, 2.5em 0em 0 0em #b5b5b5, 1.75em 1.75em 0 0em #b5b5b5, 0em 2.5em 0 0em #b5b5b5, -1.8em 1.8em 0 0em #b5b5b5, -2.6em 0em 0 0em #b5b5b5, -1.8em -1.8em 0 0em #4389d5;
	}
	25% {
		box-shadow: 0em -2.6em 0em 0em #4389d5, 1.8em -1.8em 0 0em #1b72d1, 2.5em 0em 0 0em #007BFF, 1.75em 1.75em 0 0em #b5b5b5, 0em 2.5em 0 0em #b5b5b5, -1.8em 1.8em 0 0em #b5b5b5, -2.6em 0em 0 0em #b5b5b5, -1.8em -1.8em 0 0em #b5b5b5;
	}
	37.5% {
		box-shadow: 0em -2.6em 0em 0em #b5b5b5, 1.8em -1.8em 0 0em #4389d5, 2.5em 0em 0 0em #1b72d1, 1.75em 1.75em 0 0em #007BFF, 0em 2.5em 0 0em #b5b5b5, -1.8em 1.8em 0 0em #b5b5b5, -2.6em 0em 0 0em #b5b5b5, -1.8em -1.8em 0 0em #b5b5b5;
	}
	50% {
		box-shadow: 0em -2.6em 0em 0em #b5b5b5, 1.8em -1.8em 0 0em #b5b5b5, 2.5em 0em 0 0em #4389d5, 1.75em 1.75em 0 0em #1b72d1, 0em 2.5em 0 0em #007BFF, -1.8em 1.8em 0 0em #b5b5b5, -2.6em 0em 0 0em #b5b5b5, -1.8em -1.8em 0 0em #b5b5b5;
	}
	62.5% {
		box-shadow: 0em -2.6em 0em 0em #b5b5b5, 1.8em -1.8em 0 0em #b5b5b5, 2.5em 0em 0 0em #b5b5b5, 1.75em 1.75em 0 0em #4389d5, 0em 2.5em 0 0em #1b72d1, -1.8em 1.8em 0 0em #007BFF, -2.6em 0em 0 0em #b5b5b5, -1.8em -1.8em 0 0em #b5b5b5;
	}
	75% {
		box-shadow: 0em -2.6em 0em 0em #b5b5b5, 1.8em -1.8em 0 0em #b5b5b5, 2.5em 0em 0 0em #b5b5b5, 1.75em 1.75em 0 0em #b5b5b5, 0em 2.5em 0 0em #4389d5, -1.8em 1.8em 0 0em #1b72d1, -2.6em 0em 0 0em #007BFF, -1.8em -1.8em 0 0em #b5b5b5;
	}
	87.5% {
		box-shadow: 0em -2.6em 0em 0em #b5b5b5, 1.8em -1.8em 0 0em #b5b5b5, 2.5em 0em 0 0em #b5b5b5, 1.75em 1.75em 0 0em #b5b5b5, 0em 2.5em 0 0em #b5b5b5, -1.8em 1.8em 0 0em #4389d5, -2.6em 0em 0 0em #1b72d1, -1.8em -1.8em 0 0em #007BFF;
	}
}

.loader.sml {
	font-size: 2px;
	margin: 6px 0 0 6px;
}

.loader-wrapper {
	width: 32px;
}