/*------------ Reset Browser Defaults ------------------*/

*{ outline-style: none; -webkit-text-size-adjust: none; }
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }
ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset { margin:0; padding:0; }
input { margin: 0; }
a img,:link img,:visited img { border: none; }
ol,ul{list-style:none;}
th{text-align:left;}
h1,h2,h3,h4{font-size:100%;}
q:before,q:after{content:'';}
code{font:115% monospace; font-size:100%;}
th{text-align:left;}
cite,code,th,address,footer{font-style:normal;font-weight:normal;}
body { font-size:62.5%; }
input, textarea {}
a{cursor:pointer; color:#6F6F6E; text-decoration:none; transition: color 0.5s ease;}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0}
input[type=number] {-moz-appearance: textfield}

/*------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
/* font-family:'Roboto Condensed'; */


body{
	font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
	}

select{
	cursor:pointer;
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
    background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
	background-position: calc(100% - 7px);
	}

select:invalid{
   	color: rgba(0,0,0,.5);
    }

button label{
	cursor:pointer;
	}

button:focus-visible{
	outline:solid 1px #005BA6 !important;
	outline-offset: 3px !important;
	}

input[type="checkbox"]:focus-visible{
	outline:solid 1px #005BA6 !important;
	outline-offset: 2px !important;
	}

input[type="radio"]{
	cursor:pointer;
	}

input[type="radio"]:focus-visible{
	outline:solid 1px #005BA6 !important;
	outline-offset: 2px !important;
	}


/*

	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;

 /*





/*------Global Classes & CSS Animations------*/


.clear{
	clear:both;
	}


.bottomFiller{
	width:100%;
	height:200px;
	}

.center{
	display:block;
	margin-right:auto;
	margin-left:auto;
	}

.parentOfCheckBox{
	cursor:pointer;
	}

.lowercase{
	text-transform: capitalize;
	}


.noClick{
   	pointer-events: none;
	}

.ahashakeheartache{
	-webkit-animation: kf_shake 0.2s 1 linear;
	-moz-animation: kf_shake 0.2s 1 linear;
	-o-animation: kf_shake 0.2s 1 linear;
		}

@-webkit-keyframes kf_shake {
	0% { -webkit-transform: translate(10px); }
	20% { -webkit-transform: translate(-10px); }
	40% { -webkit-transform: translate(5px); }
	60% { -webkit-transform: translate(-5px); }
	80% { -webkit-transform: translate(2px); }
	100% { -webkit-transform: translate(0px); }
		}
@-moz-keyframes kf_shake {
	0% { -moz-transform: translate(10px); }
	20% { -moz-transform: translate(-10px); }
	40% { -moz-transform: translate(5px); }
	60% { -moz-transform: translate(-5px); }
	80% { -moz-transform: translate(2px); }
	100% { -moz-transform: translate(0px); }
		}
@-o-keyframes kf_shake {
	0% { -o-transform: translate(10px); }
	20% { -o-transform: translate(-10px); }
	40% { -o-transform: translate(5px); }
	60% { -o-transform: translate(-5px); }
	80% { -o-transform: translate(2px); }
	100% { -o-origin-transform: translate(0px); }
	}




/*------Global Classes END------*/



















/*------ Pop Down Message ------*/


.popDownMessage{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    position: fixed;
    z-index:1000;
    top: -200px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    max-width: 700px;
    min-width: 222px;
    max-height: 250px;
    background-color: rgba(255,255,255,1);
    border: solid 3px #000;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.65s;
    transition: all 0.65s;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
	}


.popDownMessageNoScreenClickBox{
	display:none;
	position:fixed;
	z-index:999;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background-color:rgba(0,0,0,.5);
	}


.popDownMIconBox{
	width:60px;
	float:left;
	}


.popDownMdataBox{
	float: left;
    width: -webkit-calc(100% - 110px);
    width: calc(100% - 110px);
	}


.popDownMcloseBox{
	float:left;
	width:50px;
	}


.popDownMheaderText{
	font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 14px 0 3px 0;
    line-height: 25px;
	}


.popDownMbodyText{
	font-size: 15px;
    color: #000;
    margin: 0 0 15px 0;
    max-height: 83px;
    padding-top: 2px;
    overflow: auto;
    line-height:25px;
	}


.popDownMactionItems{
	margin-bottom:15px;
	max-height: 30px;
	}


.popDownMIconSvg{
	display:none;
	margin-top:12px;
	margin-left:auto;
	margin-right:auto;
	width:28px;
	height:28px;
	}


.info .popDownMIconInfo,
.success .popDownMIconSuccess,
.warning .popDownMIconWarning,
.error .popDownMIconError{
	display:block;
	}


/* Info Style */
.popDownMessage.info{border-color:#005BA6;}
.info .popDownMIconInfo{fill:#005BA6;}
.info .popDownMheaderText{color:#005BA6;}


/* Success Style */
.popDownMessage.success{border-color:#5DB255;}
.success .popDownMIconSuccess{fill:#5DB255;}
.success .popDownMheaderText{color:#5DB255;}


/* Warning Style */
.popDownMessage.warning{border-color:#F7B500;}
.warning .popDownMIconWarning{fill:#F7B500;}
.warning .popDownMheaderText{color:#F7B500;}


/* Error Style */
.popDownMessage.error{border-color:#E02020;}
.error .popDownMIconError{fill:#E02020;}
.error .popDownMheaderText{color:#E02020;}


.popDownMIconClose{
	display:block;
	cursor:pointer;
	margin-top:14px;
	margin-left:auto;
	margin-right:auto;
	width:22px;
	height:22px;
	}


.popDownMessage.appear{
    -webkit-animation: messagePopDown 0.65s ease-in-out;
    animation: messagePopDown 0.65s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
	}


.popDownMessage.hide{
    -webkit-animation: messagePopUp 0.65s ease-in-out;
    animation: messagePopUp 0.65s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
	}


@keyframes messagePopDown{
	0%   {top:-200px;}
  	70%  {top:15px;}
  	80%  {top:10px;}
  	100% {top:15px;}
	}

-webkit-@keyframes messagePopDown{
	0%   {top:-200px;}
  	70%  {top:15px;}
  	80%  {top:10px;}
  	100% {top:15px;}
	}

@keyframes messagePopUp{
	0%   {top:15px;}
  	20%  {top:20px;}
  	100% {top:-200px;}
	}

-webkit-@keyframes messagePopUp{
	0%   {top:15px;}
  	20%  {top:20px;}
  	100% {top:-200px;}
	}


/*------ Pop Down Message END------*/



















/*------ Tool Tip------*/


.toolTip{
	position:relative;
	}


.toolTipMessage {
	display:none;
    background: #005BA6;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    max-width: 180px;
    top: -10px;
    left: 50%;
    transform: translate(-50%,-100%);
    padding: 5px 7px;
    font-weight: normal;
    position: absolute;
    z-index: 99999999;
    box-sizing: border-box;
    text-align:center;
    width:max-content;
    font-size:12px;
	}


.toolTipMessage:after {
    content:'';
    position:absolute;
    top:100%;
    left:0px;
    right:0px;
    margin:0px auto;
    width:0px;
    height:0px;
    border-top: solid 4px #005BA6;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
	}


.toolTip:hover .toolTipMessage{
	display:block;
	animation: tableButtonTitleFadeIn 1s;
  	-webkit-animation: tableButtonTitleFadeIn 1s;
  	-moz-animation: tableButtonTitleFadeIn 1s;
  	-o-animation: tableButtonTitleFadeIn 1s;
  	-ms-animation: tableButtonTitleFadeIn 1s;
	}


.tableListHeaderContain .toolTipMessage{
	top: -3px;
	padding: 2px 7px;
	font-size:11px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
	}





/*------ Tool Tip------*/



















/*------Default Buttons------*/


.button50{
	height:50px;
	min-width:100px;
	font-size:17px;
	width:auto;
	position: relative;
	text-align:center;
	padding-left:20px;
	padding-right:20px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	outline:none;
	border:none;
	border-radius:5px;
	cursor:pointer;
	background-color:#005BA6;
	color:#fff;
	text-overflow: ellipsis;
    overflow: hidden;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}

.button50:focus-visible{
	outline:solid 1px #fff;
	outline-offset: 0px;
	}


.button50:hover{
	cursor:pointer;
	-webkit-transform:scale(1.04,1.04);
	transform:scale(1.04,1.04);
	outline:none;
	}


.button50:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	outline:none;
	}



.buttonIcon.button50{
	padding-left:50px;
	}


.button50 .buttonIconBox{
	display:none;
	position:absolute;
 	width:50px;
 	height:50px;
 	top:0;
 	left:0;
	}

.buttonIcon.button50 .buttonIconBox{
	display:block;
	}


.button50 .buttonIconBox svg{
	width:20px;
	height:20px;
	fill:#fff;
	margin:15px;
	}

.button50 .buttonIconBox.iconSizeS svg{
	width:18px;
	height:18px;
	fill:#fff;
	margin:16px;
	}

.button50.green{
	background-color:#3AB54A;
	}

.button50.whiteOpacity2{
	background-color:rgba(255,255,255,.2)
	}


.button50.buttonIconRight .buttonIconBox{
	right:0;
	left:unset;
	}

.buttonIconRight.buttonIcon.button50{
	padding-right: 50px;
	}







.button35{
	height:35px;
	min-width:100px;
	font-size:14px;
	width:auto;
	position: relative;
	text-align:center;
	padding-left:20px;
	padding-right:20px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	outline:none;
	border:none;
	border-radius:3px;
	cursor:pointer;
	background-color:#005BA6;
	color:#fff;
	text-overflow: ellipsis;
    overflow: hidden;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


.button35:focus-visible{
	outline:solid 1px #fff;
	outline-offset: 0px;
	}


.button35:hover{
	cursor:pointer;
	-webkit-transform:scale(1.04,1.04);
	transform:scale(1.04,1.04);
	outline:none;
	}


.button35:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	outline:none;
	}








.buttonIcon.button35{
	padding-left:35px;
	}


.button35 .buttonIconBox{
	display:none;
	position:absolute;
 	width:35px;
 	height:35px;
 	top:0;
 	left:0;
	}

.buttonIcon.button35 .buttonIconBox{
	display:block;
	}


.button35 .buttonIconBox svg{
	width:20px;
	height:20px;
	fill:#fff;
	margin:7.5px;
	}

.button35 .buttonIconBox.iconSizeS svg{
	width:18px;
	height:18px;
	fill:#fff;
	margin:8.5px;
	}

.button35.green{
	background-color:#3AB54A;
	}

.button35.gray{
	background-color:rgba(0,0,0,.3);
	}

.button35.whiteOpacity2{
	background-color:rgba(255,255,255,.2)
	}


.button35.buttonIconRight .buttonIconBox{
	right:0;
	left:unset;
	}

.buttonIconRight.buttonIcon.button35{
	padding-left: 0px;
	padding-right: 35px;
	}


.button30{
	height:30px;
	line-height:30px;
	min-width:100px;
	font-size:14px;
	width:auto;
	position: relative;
	text-align:center;
	padding-left:15px;
	padding-right:15px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	outline:none;
	border:none;
	border-radius:3px;
	cursor:pointer;
	background-color:#005BA6;
	color:#fff;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}

.green.button30{
	background-color:#3AB54A;
	}



.button30:focus-visible{
	outline:solid 1px #fff;
	outline-offset: 0px;
	}


.button30:hover{
	cursor:pointer;
	-webkit-transform:scale(1.04,1.04);
	transform:scale(1.04,1.04);
	outline:none;
	}


.button30:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	outline:none;
	}


.buttonIcon.button30{
	padding-left:30px;
	}


.button30 .buttonIconBox{
	display:none;
	position:absolute;
 	width:30px;
 	height:30px;
 	top:0;
 	left:0;
	}


.buttonIcon.button30 .buttonIconBox{
	display:block;
	}


.button30 .buttonIconBox svg{
	width:20px;
	height:20px;
	fill:#fff;
	margin:5px;
	}


.button30 .buttonIconBox.iconSizeS svg{
	width:18px;
	height:18px;
	fill:#fff;
	margin:6px;
	}


.cancelButton{
	background:none !important;
	color:rgba(0,0,0,.5) !important;
	-webkit-transition: all .25s ease-out;
  	-moz-transition: all .25s ease-out;
  	-o-transition: all .25s ease-out;
  	transition: all .25s ease-out;
	}




.buttonLoading{
	color:rgba(255,255,255,.0) !important;
	pointer-events: none;
	}


.buttonLoading::after {
	content: "";
	position: absolute;			
	width: 14px;
	height: 14px;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;
	border: 2px solid transparent;
	border-top-color: rgba(255,255,255,1);
	border-bottom-color: rgba(255,255,255,.2);
	border-right-color: rgba(255,255,255,.2);
	border-left-color: rgba(255,255,255,.2);
	border-radius: 50%;
	animation: button-loading-spinner .5s linear infinite;
	}


@keyframes button-loading-spinner {
  	from {transform: rotate(0turn);}
  	to {transform: rotate(1turn);}
	}



/*------Default Buttons END------*/



















/*------Mouseover Pop------*/


.pop01{
	cursor:pointer;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


.pop01:hover{
	-webkit-transform:scale(1.01,1.01);
	transform:scale(1.01,1.01);
	}


.pop01:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	}

.pop01 label{
	cursor:pointer;
	}



.pop03{
	cursor:pointer;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


.pop03:hover{
	-webkit-transform:scale(1.03,1.03);
	transform:scale(1.03,1.03);
	}


.pop03:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	}




.pop06{
	cursor:pointer;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}

.pop06:hover{
	-webkit-transform:scale(1.06,1.06);
	transform:scale(1.06,1.06);
	}

.pop06:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	}

.pop06 label{
	cursor:pointer;
	}


.pop10{
	cursor:pointer;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


.pop10:hover{
	-webkit-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
	}


.pop10:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	}

.pop10 label{
	cursor:pointer;
	}



.pop20{
	cursor:pointer;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


.pop20:hover{
	-webkit-transform:scale(1.2,1.2);
	transform:scale(1.2,1.2);
	}


.pop20:active{
	-webkit-transform:scale(1.00,1.00);
	transform:scale(1.00,1.00);
	}

.pop20 label{
	cursor:pointer;
	}





/*------Mouseover Pop END------*/












/*------Checkbox To Toggle Switch------*/




/* https://codepen.io/alvarotrigo/pen/oNoJePo */




/*------Checkbox To Toggle Switch END------*/





















/*------Loading Overlay Screen------*/


.loading{
    position:fixed;
    top:0; 
    right:0;
    bottom:0; 
    left:0;
    background:rgba(0,0,0,.80);
    z-index:5000;
    display: flex;
  	align-items: center;
  	justify-content: center;
	}


.loader{
    font-size: 10px;
    border: .5em solid rgba(255, 255, 255, .50);
    border-left: .5em solid rgba(255, 255, 255, 1);
    animation: spin 1s infinite linear;
	}


.loader, .loader:after{
    border-radius:50%;
    width:12em;
    height:12em;
    display:block;
    position:absolute;
	}


.loading img{
	width:143px;
	border-radius:75px;
	}


@keyframes spin{
	0%{transform: rotate(-360deg)}
  	100%{transform: rotate(0deg)}
	}

.loadingProgressBox{
	width: 148px;
    position: absolute;
    margin-top: 190px;
	}


.loadingProgressBarUnfilled{
	position:absolute;
	top:0px;
	width:100%;
	height:5px;
	border-radius: 5px;
	background:rgba(255,255,255,.25)	
	}

.loadingProgressBar{
	position:absolute;
	top:0px;
	width:75%;
	}


.loadingProgressBarFiller{
	position:absolute;
	top:0px;
	width:100%;
	height:5px;
	border-radius: 5px;
	background:rgba(255,255,255,1);
	}


.loadingProgressPercentage{
	position: absolute;
    top: 5px;
    right: 0;
    color: rgba(255,255,255,1);
    font-weight: 900;
    text-align: center;
    transform: translate(50%, 50%);
    font-size: 13px;
	}



.loadingCircleProgressBar{
  	position:absolute;
  	z-index:-1;
  	width: 153px;
  	height: 153px;
  	border-radius: 50%;
  	-webkit-transition: all 1s ease;
  	-moz-transition: all 1s ease;
  	-o-transition: all 1s ease;
  	transition: all 1s ease;
	}



.loadingCircleProgressPercentage{
	position: absolute;
	margin-top:20px;
    color: rgba(255,255,255,1);
    font-weight: 900;
    text-align: center;
    font-size: 13px;
    margin-top:65px;
	}


.loadingCloseLoader{
	width:30px;
	height:30px;
	position:absolute;
	margin-top:200px;
	display:flex;
	justify-content: center;
	align-items: center;
	}


.loadingCloseLoader svg{
	fill:rgba(255,255,255,.5);
	margin-left:auto;
	margin-right:auto;
	}

.loadingCloseLoader svg:hover{
	fill:rgba(255,255,255,1);
	}




/*------Loading Overlay Screen END------*/






#corpContentUploadNoClick{
	position:fixed;
	top:0;
	bottom:0;
	right:0;
	left:0;
	z-index:10000;
	}






/*------lightbox------*/


.lightBox{
	display:none;
	}


#lightBoxData{
	position:relative;
	z-index:551;
	}


.lightBoxBackground{
	position:fixed;
	z-index:500;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background:rgba(0,0,0,.80);
	}


.lbCloseBox{
	position:fixed;
	z-index:552;
	width:28px;
	height:28px;
	top:6px;
	right:6px;
	border-radius:30px;
	background:rgba(0,0,0,.75);
	}


.lbCloseBox svg{
	width:28px;
	height:28px;
	padding:2px;
	fill:rgba(255,255,255,.75);
	}


.lbCloseBox:hover svg{
	fill:rgba(255,255,255,1);
	}






.lightBoxBox{
	width:calc(100% - 50px);
  	position: absolute;
  	min-width:150px;
  	max-width:550px;
  	max-height:80vh;
  	overflow:overlay;
  	top: 60px;
  	left: 50%;
  	transform: translate(-50%, 0px);
  	background:#F7F7F7;
  	border-radius:3px;
	}


.lightBoxHeaderBox{
	width:100%;
	height:30px;
	background:#005BA6;
	color:#005BA6;
	border-radius:3px 3px 0px 0px;
	}


.lightBoxHeaderTextContain{
	width:fit-content;
	margin-left:auto;
	margin-right:auto;
	height:inherit;
	}


.lightBoxHeaderIconBox{
	height:30px;
	width:30px;
	float:left;
	}


.lightBoxHeaderIconBox svg{
	fill:#fff;
	height:20px;
	width:20px;
	margin:5px;
	}


.lightBoxHeaderText{
	float:left;
	height:30px;
	width: fit-content;
	line-height:30px;
	color:#fff;
	text-transform: uppercase;
	font-size:12px;
	font-weight:600;
	}


.lightBoxMainContentBox{
	width: calc(100% - 100px);
    margin: 45px 50px;
	}


.lightBoxActionItem {
	float:right;
    width: calc(100% - 100px);
    margin-top: 50px;
    height: auto;
	}



.lightBoxActionItem .button30{
	font-weight:800;
	text-transform: uppercase;
	font-size:11px;
	float:right;
	}


.lightBoxBox a{
	color:#005BA6;
	text-decoration: underline;
	font-weight:600;
	}


.lbDeleteButton{
	height: 30px;
    line-height: 30px;
    position: absolute;
    text-transform: uppercase;
    left: 50px;
    bottom: 50px;
    font-size: 11px;
    color: rgba(255,0,0,.5);
    font-weight: 800;
    background:none;
    min-width: fit-content;
    padding: 0px;
	}


.lbAvatarContain{
	width:100%;
	height:auto;
	float:left;
	margin-bottom:25px;
	}

.lbAvatarImg{
	position:relative;
	z-index:101;
	width:61px;
	height:61px;
	border:solid 1px #E9E8E8;
	border-radius:5px;
	object-fit: cover;
	float:left;
	-webkit-transition: transform .5s ease;
  	-moz-transition: transform .5s ease;
  	-o-transition: transform .5s ease;
  	transition: transform .5s ease;
	}

.lbAvatarImg:hover{
  	-webkit-transform:scale(2.2,2.2);
	transform:scale(2.2,2.2);
	}



.lbUploadAvatarButton{
	margin-top:15px;
	margin-left:15px;
	float:left;
	}

.lbUploadAvatarButtonIconBox{
	height:30px;
	width:30px;
	float:left;
	}

.lbUploadAvatarButtonIconBox svg{
	height:20px;
	width:20px;
	margin:5px;
	fill:#005BA6;
	}

.lbUploadAvatarButtonText{
	float:left;
	height:30px;
	line-height:30px;
	font-weight:600;
	font-size:14px;
	color:#005BA6;
	text-transform: uppercase;
	margin-left:5px;
	font-family:'Roboto Condensed';
	}


.lbGridFormSpacer{
	float:left;
	width:100%;
	margin-bottom:50px;
	}

.lbGridFormSpacer25{
	float:left;
	width:100%;
	margin-bottom:25px;
	}

.lbChangePwRequirments{
	float:left;
	width:100%;
	margin-top:12px;
	}

.lbChangePwRequirments .lpRPWrequirmentsLiTextBox{
	color:rgba(0,0,0,.75);
	font-size:12px;
	height:18px;
	line-height:18px;
	}


.lbChangePwRequirments .checked .lpRPWrequirmentsLiTextBox{
	color:rgba(0,0,0,.35);
	}



.lbChangePwRequirments .lpRPWrequirmentsLiIconBullitBox svg{
	fill:rgba(0,0,0,.5) !important;
	}


.lbChangePwRequirments .lpRPWrequirmentsLiBox{
	height:18px;
	}

.lbChangePwRequirments .lpRPWrequirmentsLiIconBox{
	height:18px;
	width:18px;
	}

.lbChangePwRequirments .lpRPWrequirmentsLiTextBox{
	height:18px;
	line-height:18px;
	}


.lbChangePwRequirments .lpRPWrequirmentsLiIconBullitBox svg {
    width: 18px;
    height: 18px;
    padding: 7px;
	}


.lbChangePwRequirments .lpRPWrequirmentsLiIconCheckBox svg {
    fill: #1382BC;
    width: 18px;
    height: 18px;
    padding: 1px;
    margin-top: -2px;
	}


.lbIframeCenter{
	width: calc(100% - 0px);
    position: absolute;
    min-width: 150px;
    max-width: 80%;
    max-height: 90vh;
    overflow: overlay;
    top: 35px;
    left: 50%;
    transform: translate(-50%, 0px);
	}


.gridFormActionItemsFiller{
	height:20px;
	}



.lbIframeCenter16x9{
	width: calc(100vw - 70px);
	aspect-ratio: 16 / 9;
    position: absolute;
    min-width: 150px;
    max-width: 80%;
    overflow: overlay;
    top: 35px;
    left: 50%;
    transform: translate(-50%, 0px);
	}


.lbIframeCenter9x16{
    position: absolute;
    min-width: 150px;
    max-width: calc(100% - 70px);
    max-height:calc(100vh - 70px);
    overflow: overlay;
    top: 35px;
    left: 50%;
    transform: translate(-50%, 0px);
    width: calc((100vh - 70px) * .5625);
    aspect-ratio: 9 / 16;
	}


.lbAccountLogoBox{
	width:100%;
	max-width:275px;
	height:175px;
	display: flex;
  	align-items: center;
  	justify-content: center;
	margin-left:auto;
	margin-right:auto;
	margin-bottom: 10px;
    margin-top: -10px;
	}

#lbAccountLogo{
	width:auto;
	height:auto;
	max-height:175px;
	max-width:275px;
	margin-left:auto;
	margin-right:auto;
	display:block;
	margin-bottom:20px;
	}


.lbPFImageBox{
	width:75px;
	height:40px;
	float:left;
	}




.lbPFImage{
	width: auto;
  	max-width: 75px;
  	height: auto;
  	max-height: 30px;
	padding:2px;
	margin-top:5px;
	display:block;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	}


.lbPFImageName{
	float:left;
	font-size: 12px;
    font-weight: 800;
    line-height: 40px;
    width:calc(100% - 115px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor:pointer;
	}

.lbPFDeleteBox{
	width:40px;
	height:40px;
	float:right;
	}

.lbPFDeleteBox svg{
	width:20px;
	height:20px;
	margin:10px;
	fill:red;
	}

.formCell.selected{
	border:solid 1px #005BA6;
	z-index:300;
	}


#lbListOfPrivateFiles .formCell:first-child{
	border-radius:3px 3px 0px 0px;

	}


#lbListOfPrivateFiles .formCell:last-child{
	border-radius:0px 0px 3px 3px;
	}



/*------lightbox END------*/














/*------wizard------*/

.wizard{
	display:none;
	}


#wizardData{
	position:relative;
	overflow:hidden;
	scroll:none;
	z-index:201;
	}


.wizardBackground{
	position:fixed;
	z-index:200;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background:rgba(255,255,255,1);
	}

.wizardPage{
	width:100%;
	float:left;
	height:auto;
	min-height:200px;
	}

.wizardContain{
	transform: translate(0px, 0px);
	}

.wizardAnimationOn{
	transform: translate(0px, 0px);
	-webkit-transition: transform .3s ease;
  	-moz-transition: transform .3s ease;
  	-o-transition: transform .3s ease;
  	transition: transform .3s ease;
	}

.wizardPageBox{
	display:none;
	margin-top:100px;
	width:calc(100% - 50px);
	margin-right:auto;
	margin-left:auto;
	max-width:800px;
	}

.wizardWelcomeLogo{
	display:block;
	width:222px;
	margin-left:auto;
	margin-right:auto;
	}

.wizardH1Text{
	font-family:'Roboto Condensed';
	font-weight:700;
	color:#414241;
	font-size:33px;
	text-align:center;
	}

.wizardH2text{
	font-size:17px;
	color:#414241;
	text-align:center;
	font-weight:500;
	margin-top:10px;
	line-height:23px;
	}

.wizardWelcomeFirstButton{
	width:222px;
	margin-top:55px;
	margin-left:auto;
	margin-right:auto;
	display:block;
	}


.wizardFinishPage .wizardWelcomeFirstButton{
	width:250px;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
	display:block;
	padding-left:15px;
	text-align:left;
	}



.wizardSkipSetup{
	cursor:pointer;
	margin-top:75px;
	text-align:center;
	color:rgba(65,66,65,.5);
	font-size:14px;
	display:block;
	margin-left:auto;
	margin-right:auto;
	width: max-content;
	background:none;
	outline:none;
	border:none;
	}

.wizardSkipSetup:hover{
	color:rgba(65,66,65,1);
	}

.wizardSkipSetup:focus{
	color:rgba(65,66,65,1);
	outline-offset: -1px !important;
	}


.wizardFormContain{
	margin-top:50px;
	width:calc(100%);
	max-width:281px;
	display:block;
	margin-left:auto;
	margin-right:auto;
	}

.wizard .formCellLabel{
	font-size:14px;
	}


.wizard .formCell{
	min-height:60px;
	}

.wizard .formCellLabel{
	padding-top:15px;
	padding-left:15px;
	}


.wizard .formCellInput{
	margin-top:4px;
	margin-bottom:15px;
	padding-left:15px;
	}

.wizard .formCell .toolTipIconBox{
	right:15px;
	top:15px;
	}

.wizard select.formCellInput{
	background-position: calc(100% - 15px);
	}

.wizardActionItemsNextBackContain{
	margin-top:50px;
	margin-bottom:50px;
	}

.wizardActionItemsNextBackContain button{
	width:calc(50% - 5px);
	}

.wizardActionNext svg{
	width:15px !important;
	height:15px !important;
	margin: 10px !important;
	}

.wizardActionBack svg{
	width:15px !important;
	height:15px !important;
	margin: 10px !important;
	margin-left:13px !important;
	}

.wizardUploadLogoButton{
	width:calc(100% - 30px);
	margin-left:auto;
	margin-right:auto;
	display:block;
	margin-top:15px;
	margin-bottom:15px;
	}

.wizardCompanyLogo{
	width:calc(100% - 30px);
	margin-left:15px;
	display:none;
	margin-top:5px;
	}

.wizard .toolTipMessage.noMaxWidth{
	max-width:1000px !important;
	}

.wizard .displayOptionMonthsList{
	columns: 1;
    -webkit-columns: 1;
	}


.wizardRadioContain{
	width:100%;
	}








.wizardRadioSelectionBoxHr{
	opacity:.5;
	-webkit-transition: all .1s ease;
  	-moz-transition: all .1s ease;
  	-o-transition: all .1s ease;
  	transition: all .1s ease;
  	cursor:pointer;
	}

.active.wizardRadioSelectionBoxHr{
	opacity:1;
	}


.threeCol .wizardRadioSelectionBoxHr{
	width:33.3333333333333333333%;
	float:left;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
	}


.twoCol .wizardRadioSelectionBoxHr{
	width:50%;
	float:left;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
	}


.oneCol .wizardRadioSelectionBoxHr{
	width:100%;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
	}


.wizardRadioSelectionBoxHr:focus-visible{
	border:solid 1px #005BA6;
	border-radius:4px;
	}

.twoCol .wizardRadioSelectionBoxHr img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	}


.threeCol .wizardRadioSelectionBoxHr img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	}


.wizardRadioOptionBox{
	width:fit-content;
	margin-left:auto;
	margin-right:auto;
	display:block;
	}

.wizardRadioOptionBox input{
	float:left;
	}

.wizardRadioOptionText{
	float:left;
	margin-left:10px;
	margin-top:-2px;
	font-weight:600;
	}

.wizardRadioOptionContainer{
	width:100%;
	position:absolute;
	bottom:0;
	}

.wizard-tv-screen-orientation .wizardRadioSelectionBoxHr{
	height:385px;
	}

.wizard-program-sound .wizardRadioSelectionBoxHr{
	height:250px;
	}

.wizard-tv-size .wizardRadioSelectionBoxHr{
	height:225px;
	}





.wizardContentSliderContain{
	width:281px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	}


.wisardSlider-container {
    width: 281px;
    margin: 20px auto;
    text-align: center;
    position: relative;
    }


.wizardSlider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.wizardSlider:hover {
  opacity: 1;
}

.wizardSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #005BA6;
  cursor: pointer;
}

.wizardSlider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}


.wisardSlider-value{
    position: absolute;
    width:50px;
    text-align: center;
    transform: translateX(-50%);
    left: 140.5px;
    margin-top:15px;
    }

.wizardSliderEducatinalText{
	position:absolute;
	left:-42;
	top:-45px;
	font-weight:600;
	font-size:16px;
	color:#005BA6;
	}

.wizardSliderEducatinalValue{
	font-weight:800;
	color:#005BA6;
	}

.wizardSliderEntertainmentText{
	position:absolute;
	right:-49px;
	top:-45px;
	font-weight:600;
	font-size:16px;
	color:#FF9C00;
	}

.wizardSliderEntertainmentValue{
	font-weight:800;
	color:#FF9C00;
	}

.wizardSliderExsampleSVG{
	width:80%;
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-top:75px;
	}





.wizardZone1{
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
	}


.wizardZone2{
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
	}


.wizardZone3{
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
	}






.wizardProgramHRlayouts{
	display:none;
	}



.wizardProgramLayoutContain{
	width:100%;
	}

.wizardProgramLayoutOptionBox{
	position:relative;
	height:324px;
	margin-bottom:45px;
	}



.wizardProgramVRlayouts{
	display:none;
	width: 665px;
    margin-left: auto;
    margin-right: auto;
	}


.program-layout-options .wizardProgramVRlayouts{
	width: 605px;
	}



.wizardProgramVRlayouts .wizardProgramLayoutOptionBox{
	position:relative;
	height:576px;
	margin-bottom:45px;
	}





.program-layout-options .wizardProgramLayoutOptionBox{
	height:540px;
	}

.program-layout-options .wizardProgramVRlayouts .wizardProgramLayoutOptionBox{
	height:672px;
	}




.active.wizardProgramLayoutOptionBox{
	outline:solid 5px #005BA6;
	outline-offset: 15px;
	}


.wizardLayoutExsampleOuterContainer{
	position:absolute;
	height:324px;
	width:576px;
	box-sizing: border-box;
	outline:1px solid #000;
	}




.wizardProgramVRlayouts .wizardLayoutExsampleOuterContainer{
	position:absolute;
	height:576px;
	width:324px;
	box-sizing: border-box;
	outline:1px solid #000;
	}






.program-layout-options .wizardLayoutExsampleOuterContainer{
	height:540px;
	width:960px;
	}


.program-layout-options .wizardProgramVRlayouts .wizardLayoutExsampleOuterContainer{
	height:672px;
	width:378px;
	}




.wizardLayoutExsampleContainer{
	float:left;
	width:1920px;
	height:1080px;
	background:#000;
	position:relative;
	display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-weight:700;
    font-size:90px;
    transform: scale(0.3); /* Scale down to 50% */
    transform-origin: top left;
    text-align:center;
    outline:none;
    border: none;
	}




.wizardProgramVRlayouts .wizardLayoutExsampleContainer{
	float:left;
	width:1080px;
	height:1920px;
	background:black;
	position:relative;
	display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-weight:700;
    font-size:80px;
    transform: scale(.3); /* Scale down to 50% */
    transform-origin: top left;
    text-align:center;
    outline:none;
    border: none;
	}






.program-layout-options .wizardLayoutExsampleContainer{
	transform: scale(0.5);
	}


.program-layout-options .wizardProgramVRlayouts .wizardLayoutExsampleContainer{
	transform: scale(0.35);
	}


.wizardLayoutExsample1Zone1{
	width:607.5px;
	height:1080px;
	position:absolute;
	top:0;
	left:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#F8A01B;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
    text-align:center;
	}


.wizardLayoutConfiguration2 .wizardLayoutExsample1Zone1{
	left:1312px;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample1Zone1{
	left:1312px;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample1Zone1{
	left:0;
	}




.wizardLayoutExsample1Zone2{
	width:1312.5px;
	height:938px;
	position:absolute;
	bottom:0;
	right:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#00AEAC;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}



.wizardLayoutConfiguration2 .wizardLayoutExsample1Zone2{
	right:607.5px;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample1Zone2{
	right:607.5px;
	bottom:142px;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample1Zone2{
	right:0px;
	bottom:142px;
	}




.wizardLayoutExsample1Zone3{
	width:1312.5px;
	height:142px;
	position:absolute;
	top:0;
	right:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#AD208D;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}



.wizardLayoutConfiguration2 .wizardLayoutExsample1Zone3{
	right:607.5px;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample1Zone3{
	right:607.5px;
	top:938px;
	}


.wizardLayoutConfiguration4 .wizardLayoutExsample1Zone3{
	right:0;
	top:938px;
	}
















.wizardLayoutExsample2Zone1{
	width:1312.5px;
	height:738.2813px;
	position:absolute;
	top:0;
	left:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#F8A01B;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}

.wizardLayoutConfiguration2 .wizardLayoutExsample2Zone1{
	top:341.7187px;
	left:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample2Zone1{
	top:341.7187px;
	left:607.5px;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample2Zone1{
	top:0;
	left:607.5px;
	}






.wizardLayoutExsample2Zone2{
	width:607.5px;
	height:1080px;
	position:absolute;
	top:0;
	right:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#00AEAC;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}

.wizardLayoutConfiguration2 .wizardLayoutExsample2Zone2{
	top:0;
	right:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample2Zone2{
	top:0;
	right:1312.5px;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample2Zone2{
	top:0;
	right:1312.5px;
	}




.wizardLayoutExsample2Zone3{
	width:1312.5px;
	height:341.7187px;
	position:absolute;
	bottom:0;
	left:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#AD208D;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}


.wizardLayoutConfiguration2 .wizardLayoutExsample2Zone3{
	bottom:738.2813px;
	left:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample2Zone3{
	bottom:738.2813px;
	left:607.5px;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample2Zone3{
	bottom:0px;
	left:607.5px;
	}







.wizardLayoutExsample3Zone1{
	width:1458.5163px;
	height:820.4154px;
	position:absolute;
	top:0;
	left:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#F8A01B;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}


.wizardLayoutConfiguration2 .wizardLayoutExsample3Zone1{
	top:259.5846px;
	left:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample3Zone1{
	top:259.5846px;
	left:461.4837px;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample3Zone1{
	top:0px;
	left:461.4837px;
	}






.wizardLayoutExsample3Zone2{
	width:461.4837px;
	height:820.4154px;
	position:absolute;
	top:0;
	right:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#00AEAC;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}

.wizardLayoutConfiguration2 .wizardLayoutExsample3Zone2{
	top:259.5846px;
	right:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample3Zone2{
	top:259.5846px;
	right:1458.5163px;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample3Zone2{
	top:0px;
	right:1458.5163px;
	}



.wizardLayoutExsample3Zone3{
	width:1920px;
	height:259.5846px;
	position:absolute;
	bottom:0;
	left:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#AD208D;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}


.wizardLayoutConfiguration2 .wizardLayoutExsample3Zone3{
	bottom:820.4154px;
	left:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample3Zone3{
	bottom:820.4154px;
	left:0;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample3Zone3{
	bottom:0px;
	left:0;
	}








.wizardLayoutExsample4Zone1{
	width:1080px;
	height:607.5px;
	position:absolute;
	top:146.0163px;
	left:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#F8A01B;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}

.wizardLayoutConfiguration2 .wizardLayoutExsample4Zone1{
	top:1312.5px;
	left:0;
	}


.wizardLayoutConfiguration3 .wizardLayoutExsample4Zone1{
	top:1166.4837px;
	left:0;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample4Zone1{
	top:0px;
	left:0;
	}




.wizardLayoutExsample4Zone2{
	width:1080px;
	height:1166.4837px;
	position:absolute;
	bottom:0;
	right:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#00AEAC;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}


.wizardLayoutConfiguration2 .wizardLayoutExsample4Zone2{
	bottom:607.5px;
	right:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample4Zone2{
	bottom:753.5163px;
	right:0;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample4Zone2{
	bottom:0;
	right:0;
	}



.wizardLayoutExsample4Zone3{
	width:1080px;
	height:146.0163px;
	position:absolute;
	top:0;
	left:0;
	display: flex;
    align-items: center;
    justify-content: center;
    background:#AD208D;
    text-align:center;
    border: none; /* Remove borders */
    overflow: hidden; /* Disable scrolling */
	}

.wizardLayoutConfiguration2 .wizardLayoutExsample4Zone3{
	top:0;
	left:0;
	}

.wizardLayoutConfiguration3 .wizardLayoutExsample4Zone3{
	top:1773.9837px;
	left:0;
	}

.wizardLayoutConfiguration4 .wizardLayoutExsample4Zone3{
	top:607.5px;
	left:0;
	}









.wizardProgramVRlayouts .wizardProgramLayoutOptionInput{
	position:absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	left:-100px;
	top:0px;
	width:100px;
	height:600px;
	}




.wizardProgramLayoutOptionInput{
	position:absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	left:-100px;
	top:0px;
	width:100px;
	height:324px;
	}








.wizardLayoutChooseOptionsContainer{
	width:210px;
	min-height:600px;
	padding-right:15px;
	overflow:auto;
	max-height:700px;
	position:absolute;
	top:0px;
	right:0px;
	}



.wizardLayoutChooseOptionsContainer .formCell {
    min-height:50px;
	}


.wizardLayoutChooseOptionsContainer .formCellInput {
    margin-top: 0px;
    margin-bottom: 5px;
    padding-left: 10px;
	}


.wizardLayoutChooseOptionsContainer .formCellLabel {
    padding-top: 10px;
    padding-left: 10px;
    font-size: 12px;
	}	

.wizardChooseOptionsHeaderText{
	font-size:18px;
	color:#414241;
	font-weight:600;
	margin-bottom:10px;
	margin-top:-7px;
	}



.wizardLayoutChooseOptionsContainer select.formCellInput {
    background-position:calc(100% - 5px);;
}

.wizardLayoutChooseOptionsContainer .toolTip:hover .toolTipMessage {
    display: none !important;
}

.wizardTipClone {
    display: block;
    position: fixed;
    transform: none;
    background: #005BA6;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    max-width: 190px;
    padding: 10px;
    z-index: 99999999;
    text-align: center;
    width: max-content;
    box-shadow: 5px 5px 5px 0 rgb(0 0 0 / 25%);
    font-weight: normal;
    box-sizing: border-box;
}


.wizardAutonetTVLogoTopLeft{
	position:fixed;
	top:20px;
	left:20px;
	width:75px;
	}

.wizardExitSetupBottomRight{
	position:fixed;
	bottom:30px;
	right:30px;
	width:auto;
	color:rgba(65,66,65,.5);
	font-size:13px;
	z-index:200;
	}


.wizardExitSetupBottomRight:hover{
	color:rgba(65,66,65,1);
	}



.wizardFormLabelRadioLeft{
	margin-left:10px;
	float:left;
	}

.wizardFormLabelRadioInput{
	float:left;
	margin-top: 3px;
    margin-left: 3px;
	}


.choose-subscription-setup .displayOptionMonthsList{
	padding-left:42px;
	padding-right:35px;
	}



.wizardSubscriptionDeviceCheckOffCheck{
	position:absolute;
	right:15px;
    margin-top: -3px;
    margin-left: 5px;
	}


.wizardSubscriptionDeviceCheckOffCheck svg{
	width:17px;
	height:17px;
	fill:#3AB54A;
	}


.choose-subscription-setup .formCellUlLabel{
	margin-top:-3px;
	padding-right:5px;
	}

.parentOfRadioButton input{
	margin-top:3px;
	}


.radioParentClickOverlay{
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	z-index:50;
}



/*------wizard END------*/













/*------Login Page------*/


.loginpage{
	background:#000;
  	background: url('../img/loginbackground3.jpg') no-repeat top center fixed; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	}


#loginContain{
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	margin-top:243px;
	width:235px;
	margin-left:auto;
	margin-right:auto;
	}


#lpLogoContain{
	width:100%;
	margin-bottom:25px;
	}


#lpLogoContain img{
	width:200px;
	display: block;
	margin-left:auto;
	margin-right:auto;
	}


.lpInputContain{
	width:100%;
	}


.lpIconBox{
	display:flex;
	width:35px;
	height:35px;
	background:rgba(255,255,255,.1);
	float:left;
	}


.lpIconBox svg{
	fill:#fff;
	width:18px;
	height:18px;
	margin:auto;
    display: block;
	}


.lpInput{
	width:calc(100% - 35px);
	height:35px;
	padding-left:12px;
	line-height:35px;
	border:0px;
	outline:0px;
	font-size:14px;
	background:rgba(255,255,255,.1);
	color:#fff;
	font-family: 'Roboto', sans-serif;
    font-weight: 400;
    float:left;
    transition: background 0.0s ease;
	}


.lpInput::placeholder {color: rgba(255,255,255,.5);}
.lpInput::-webkit-input-placeholder{color: rgba(255,255,255,.5);}/* Edge */
.lpInput:-ms-input-placeholder { color: rgba(255,255,255,.5);}/* Internet Explorer */


.lpInput:focus{
	background:rgba(255,255,255,.3);
	}


#lpEmailBox{
	border-radius: 3px 3px 0px 0px;
	}


#lpEmailBox .lpIconBox{
	border-radius: 3px 0px 0px 0px;
	}


#lpEmailBox .lpInput{
	border-radius: 0px 3px 0px 0px;
	}


#lpPasswordBox{
	position:relative;
	margin-top:2px;
	border-radius: 0px 0px 3px 3px;
	}


#lpPasswordBox .lpIconBox{
	border-radius: 0px 0px 0px 3px;
	}


#lpPasswordBox .lpInput{
	border-radius: 0px 0px 3px 0px;
	}


.lpInputContain.error{
	outline: 2px solid red;
    outline-offset: -2px;
    -webkit-animation: kf_shake 0.2s 1 linear;
	-moz-animation: kf_shake 0.2s 1 linear;
	-o-animation: kf_shake 0.2s 1 linear;
	}


.error .lpIconBox{
	background:rgba(255,255,255,1);
	}


.error .lpIconBox svg{
	fill:#ff0000;
	}


.error .lpInput{
	background:rgba(255,255,255,1);
	color:#ff0000;
	transition: background 0s ease;
	}


.error .inputErrorBox{
	display:block;
	} 


.inputErrorBox{
	display:none;
	width:100%;
	font-family: 'Roboto', sans-serif;
    font-weight: 400;
	background:#FF0000;
	color:#fff;
	padding:10px;
	line-height:16px;
	}


.inputErrorBox a{
	text-decoration: underline;
	font-weight:600;
	color:#fff
	}


#lpPasswordBox .inputErrorBox{
	border-radius: 0px 0px 3px 3px;
	}


.error .lpInput::placeholder {color: #ff0000;}
.error .lpInput::-webkit-input-placeholder{color: color: #ff0000;}/* Edge */
.error .lpInput:-ms-input-placeholder { color: color: #ff0000;}/* Internet Explorer */


#lpActionItemContain{
	margin-top:20px;
	width:100%;
	}


.lpForgotText{
	float:left;
	cursor:pointer;
	color:rgba(255,255,255,.5);
	}


.lpForgotText:hover{
	color:rgba(255,255,255,1);
	}


#lpLoginButton, #lpResetPWButton {
	float:right;
	}


.lpLogin #lpBackText,
.lpLogin #lpResetPWButton,
.lpLogin #lpResetPWMessageContain,
.lpLogin #lpBackToLoginScreenText{
	display:none;
	}



.pwInputShow{
	width:35px;
	height:35px;
	position:absolute;
	top:0;
	right:-35px;
	display: flex;
  	justify-content: center;
  	align-self: center;
	}

.pwInputShow .toolTipMessage{
	top:-7px;
	}

.pwInputShow svg{
	fill: rgba(255,255,255,.0);
    width: 18px;
    height: 18px;
    margin: auto;
	}

.pwInputShow svg:hover{
	fill: rgba(255,255,255,1) !important;
	}


#lpPasswordBox:hover .pwInputShow svg{
	fill: rgba(255,255,255,.5);
	}

.pwInputShow:hover .pwInputShow svg{
	fill: rgba(255,255,255,.5);
	}

.pwEyeHide{
	display:none;
	}



.gridForm .pwInputShow{ 
	right:0px;
	}


.gridForm .pwInputShow svg{
	fill: rgba(0,0,0,1);
	}

.gridForm .pwInputShow svg:hover{
	fill: rgba(0,0,0,1) !important;
	}




/*------Login Page END------*/



















/*------Reset PW Page------*/


.lpResetPw #lpLoginButton,
.lpResetPw #lpResetPWMessageContain,
.lpResetPw #lpBackToLoginScreenText,
.lpResetPw #lpPasswordBox,
.lpResetPw #lpForgotText{
	display:none;
	}


 .lpResetPw #lpEmailBox{
	border-radius: 3px 3px 3px 3px;
	}


.lpResetPw #lpEmailBox .lpInput {
    border-radius: 0px 3px 3px 0px;
	}


.lpResetPw #lpEmailBox .lpIconBox {
    border-radius: 3px 0px 0px 3px;
	}


.lpResetPwMessage #lpEmailBox,
.lpResetPwMessage #lpPasswordBox,
.lpResetPwMessage .lpForgotText,
.lpResetPwMessage .lpBackText,
.lpResetPwMessage #lpLoginButton,
.lpResetPwMessage #lpResetPWButton{
	display:none;
	}


#lpResetPWMessageContain{
	background: #005BA6;
    width: 130%;
    margin-left: -15%;
    border-radius: 3px;
    padding: 25px;
    color: #fff;
    font-size:14px;
    font-weight:300;
    min-height:267px;
	}


#lpResetPWMessageEmailSentIcon{
	width: 40px;
    margin-left: auto;
    margin-right: auto;
	}


#lpResetPWMessageEmailSentIcon svg{
	fill:#fff;
	width:40px;
	height:40px;
	}


#lpResetPWMessageContain p{
	margin-top:20px;
	}


.lpResetPWMessageEmail{
	font-weight:600;
	}


.lpResetPWMessageTextLink{
	color:#fff;
	font-weight:600;
	cursor:pointer;
	text-decoration: underline;
	}


#lpBackToLoginScreenText{
	cursor:pointer;
	width:200px;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
	color:rgba(255,255,255,.5);
	margin-top:75px;
	}


#lpBackToLoginScreenText:hover{
	color:rgba(255,255,255,1);
	}


/*------Reset PW Page------*/



















/*------ Set New PW ------*/


.lpSetNewPW #lpEmailBox{
	margin-bottom:20px;
	}


.lpSetNewPW #lpEmailBox .lpInput{
	-webkit-appearance: none;
	background:#B8B8B8;
	border-radius:0px 3px 3px 0px;
	color:#000;
	}


.lpSetNewPW #lpEmailBox .lpIconBox{
	background:#B8B8B8;
	border-radius:3px 0px 0px 3px;
	}


.lpSetNewPW #lpEmailBox .lpIconBox svg{
	fill:#000;
	}


.lpSetNewPW #lpPasswordBox .lpInput{
	border-radius:0px 3px 0px 0px;
	}


.lpSetNewPW #lpPasswordBox .lpIconBox{
	border-radius:3px 0px 0px 0px;
	}


.lpSetNewPW #lpPasswordBox2{
	margin-top:2px;
	}


.lpSetNewPW #lpPasswordBox2 .lpInput{
	border-radius:0px 0px 3px 0px;
	}


.lpSetNewPW #lpPasswordBox2 .lpIconBox{
	border-radius:0px 0px 0px 3px;
	}


#lpSetNewPassword{
	float:right;
	}


#lpResetPWrequirmentsContain{
	width:235px;
	position: absolute;
    margin-top: -7px;
    margin-left: 265px;
	}


.lpRPWrequirmentsLiBox{
	width:100%;
	width:max-content;
	min-width:100%;
	height:24px;
	}


.lpRPWrequirmentsLiIconBox{
	width:24px;
	height:24px;
	float:left;
	}


.lpRPWrequirmentsLiIconBullitBox svg{
	fill:#fff;
	width:24px;
	height:24px;
	padding:9px;
	}


.lpRPWrequirmentsLiTextBox{
	height:24px;
	line-height:24px;
	width:calc(100% - 24px);
	float:left;
	font-size:13px;
	color:rgba(255,255,255,1);
	font-weight:400;
	}


.lpRPWrequirmentsLiIconCheckBox{
	display:none;
	fill:#4FFF44;
	}


.lpRPWrequirmentsLiIconCheckBox svg{
	fill:#4FFF44;
	width:24px;
	height:24px;
	padding:3px;
	margin-top: -2px;
	}


.checked .lpRPWrequirmentsLiIconBullitBox{
	display:none;
	}


.checked .lpRPWrequirmentsLiIconCheckBox{
	display:block;
	}


.checked .lpRPWrequirmentsLiTextBox{
	color:rgba(255,255,255,.5);
	text-decoration: line-through;
	}


/*------ Set New PW END------*/



















/*------ Main Layout ------*/




/*------Top Header------*/


#topHeader{
	position:fixed;
	top:0px;
	width:100%;
	height:70px;
	background-color:#f39c12;
	z-index:1;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
	}


#antHeaderLogo{
	position:relative;
	width: 230px;
    height: 70px;
    text-align: center;
    background-color:#DE8F27;
    float:left;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    -webkit-transition: width .25s ease-out;
  	-moz-transition: width .25s ease-out;
  	-o-transition: width .25s ease-out;
  	transition: width .25s ease-out;
	}


.asideClosed #antHeaderLogo{
	width: 44px;
	}


#antHeaderLogo svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 68px;
    fill: #fff;
    -webkit-transition: width .25s, height .25s ease-out;
    -moz-transition: width .25s, height .25s ease-out;
    -o-transition: width .25s, height .25s ease-out;
    transition: width .25s, height .25s ease-out;
	}

#systemHeaderTestingBox, #systemDataHeaderBox{
	overflow:hidden;
	width:100%;
	height:35px;
	font-size:13px;
	text-align:left;
	line-height:35px;
	padding-left:10px;
	padding-right:10px;
	color:#fff;
	font-weight:500;
	}

#systemHeaderTestingBox{
	background:rgba(17,170,0,.9);
	}


#systemDataHeaderBox{
	background:rgba(255,0,0,.9);
	}


#systemDataHeaderBox.yellowBackground{
	background:rgba(255,255,0,.9) !important;
	color:#222D31;
	}











.asideClosed #antHeaderLogo svg {
    width: 32px;
    height: 72px;
	}


.antLwords{
	opacity:1;
	-webkit-transition: opacity .15s ease-out;
  	-moz-transition: opacity .15s ease-out;
  	-o-transition: opacity .15s ease-out;
  	transition: opacity .15s ease-out;
	}


.asideClosed .antLwords{
	opacity:0;
	}


#asideOpenCloseButton{
	width:70px;
	height:70px;
	float:left;
	}


#asideOpenCloseButtonDesktop{
	display:block;
	}


#asideOpenCloseButtonPhone{
	display:none;
	}


#asideOpenCloseButton{
	cursor:pointer;
	width:70px;
	height:70px;
	-webkit-transition: transform .15s ease-out;
  	-moz-transition: transform .15s ease-out;
  	-o-transition: transform .15s ease-out;
  	transition: transform .15s ease-out;
	}


#asideOpenCloseButton:hover{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
  	-ms-transform: scale(1.05);
  	-o-transform: scale(1.05);
  	transform: scale(1.05);
	}


#asideOpenCloseButton:active{
	-webkit-transform: scale(1.0);
	-moz-transform: scale(1.0);
  	-ms-transform: scale(1.0);
  	-o-transform: scale(1.0);
  	transform: scale(1.0);
	}


#asideOpenCloseButton:hover svg{
	fill:rgba(255,255,255,1);
	}


#asideOpenCloseButton svg{
	fill:rgba(255,255,255,.7);
	width:30px;
	height:30px;
	margin:20px;
	-webkit-transition: transform .25s ease-out;
  	-moz-transition: transform .25s ease-out;
  	-o-transition: transform .25s ease-out;
  	transition: transform .25s ease-out;
	}


.asideClosed #asideOpenCloseButton svg{
  	-webkit-transform: rotate(180deg);
  	-moz-transform: rotate(180deg);
  	-ms-transform: rotate(180deg);
  	-o-transform: rotate(180deg);
  	transform: rotate(180deg);
	}


#customerLogo{
	float:left;
	height:70px;
	width:calc(100% - 370px);
	text-align:center;
	-webkit-transition: width .25s ease-out;
  	-moz-transition: width .25s ease-out;
  	-o-transition: width .25s ease-out;
  	transition: width .25s ease-out;
	}


#customerLogo img{
	opacity:1;
	}


.asideClosed #customerLogo{
	width:calc(100% - 184px);
	}


#customerLogo img{
    height: 60px;
    margin-top: 5px;
    object-fit: contain;
    max-width:calc(100% - 120px);
	}

.customerLogoText{
	color: #fff;
    width: 80%;
    font-size: 22px;
    font-weight: 500;
    line-height: 70px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 0px rgba(0,0,0,.5);
	}


#accountName {
	cursor:pointer;
    position: fixed;
    color: rgba(255,255,255,.7);
    right: 60px;
    text-align: right;
    height: 70px;
    line-height: 70px;
    font-size: 14px;
    font-weight: 600;
    max-width:200px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}


#accountName:hover{
    color: rgba(255,255,255,1);
	}


#accountIconButtonBoxClickOff{
	display:none;
	position:fixed;
	z-index:99;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	}


#accountIconButton{
	position:fixed;
	top:0px;
	right:0px;
	cursor:pointer;
	pointer-events: auto;
	width:53px;
	height:70px;
	}


#userAccountPhoto{
	display:none;
	}



.hasAvatar img{
	display:block !important;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


.hasAvatar svg{
	display:none;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


#accountIconButton svg{
	width:24px;
	height:24px;
	margin-top:23px;
	margin-bottom:23px;
	margin-right:23px;
	margin-left:6px;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


#accountIconButton img{
	width:30px;
	height:30px;
	margin-top:20px;
	margin-right:20px;
	margin-left:3px;
  	object-fit: cover;
  	border-radius:30px;
  	border:solid 2px rgba(255,255,255,.7);
	}


.headerIcon svg{
	fill: rgba(255,255,255,.7);
	}


.headerIcon svg:hover {
	fill: rgba(255,255,255,1);
	-webkit-transform:scale(1.25,1.25);
	transform:scale(1.25,1.25);
	}

.headerIcon svg:active{
	fill: rgba(255,255,255,1);
	-webkit-transform:scale(0.80,0.80);
	transform:scale(0.80,0.80);
	}


.headerIcon img:hover{
	border:solid 2px rgba(255,255,255,1) !important;
	-webkit-transform:scale(1.25,1.25);
	transform:scale(1.25,1.25);
	}

.headerIcon img:active{
	border:solid 2px rgba(255,255,255,1) !important;
	-webkit-transform:scale(0.80,0.80);
	transform:scale(0.80,0.80);
	}




#accountDropDownBox{
	display:none;
	position:fixed;
	z-index:100;
	top:57px;
	right:12px;
	min-width:175px;
	background-color:#222D31;
	background-color:rgba(33,45,49,.95);
	border-radius:5px;
	}


#accountDropDownBoxTopArrow{
	position:absolute;
	width:0px; 
  	height:0px; 
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #222D31;
    top: -7px;
    right: 16px;
	}


.accountDropDownLI{
	width:100%;
    height:38px;
    line-height:38px;
    cursor:pointer;
    line-height: 38px;
    color:#fff;
    font-weight:400;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}

.accountDropDownLI label{
	cursor:pointer;
	}

.accountDropDownLI:hover{
	opacity:1;
	background-color: rgba(255,255,255,.1);
	}


.accountDropDownIconBox{
	width:38px;
	height:38px;
	float:left;
	}


.accountDropDownIconBox svg{
	width:20px;
	height:20px;
	margin:9px;
	fill:#fff;
	}


.accountDropDownLIText{
	float:left;
	width:calc(100% - 38px);
	height:38px;
	cursor:pointer;
    line-height: 38px;
    color:#fff;
    font-weight:400;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}


.accountDropDownLI select{
	outline:none;
	border:none;
	background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
	background-position: 90%;
	}

.accountDropDownLI option{
	color:#000;
	}


#focusHeaderBox{
	width:max-content;
	max-width:95%;
	position: fixed;
    left: calc(50% + 230px);
    top: -60px;
    transform: translate(calc(-50% - 115px), 0%);
	background:rgba(0,0,0,.8);
	border-radius:0px 0px 5px 5px;
	z-index:100;
	height:30px;
	overflow:hidden;
	overflow-x:overlay;
	padding-left:1px;
	padding-right:1px;
	}


#focusHeaderBox::-webkit-scrollbar {
  	height:8px;
	}


#focusHeaderBox::-webkit-scrollbar-thumb {
	border:none;
  	background:rgba(255,255,255,.4) !important;
  	border:solid 2px #222d32;
	}


#focus_area{
	float:left;
	}

#innerFocusBox{
	width:max-content;
	}

.focusHeaderIconBox{
	float:left;
	width:30px;
	height:30px;
	}


.focusHeaderIconBox svg{
	width:16px;
	height:16px;
	margin:7px;
	fill:#fff;
	}


.focusHeaderIconBoxX{
	float:left;
	width:30px;
	height:30px;
	}


.focusHeaderIconBoxX svg{
	width:16px;
	height:16px;
	margin:7px;
	fill:rgba(255,255,255,.7);
	}


.focusHeaderIconBoxX:hover svg{
	fill:rgba(255,255,255,1);
	}


.focusHeaderText{
	cursor:pointer;
	color:rgba(255,255,255,.7);
	float:left;
	height:30px;
	line-height:30px;
	font-size:13px;
	font-weight:500;
	}


.focusHeaderText:hover{
	color:rgba(255,255,255,1);
	text-decoration: underline;
	}


.focusHeaderArrowNext{
	float:left;
	width:20px;
	height:30px;
	}


.focusHeaderArrowNext svg{
	width:20px;
	height:20px;
	margin:5px 0px;
	fill:rgba(255,255,255,.7);
	}


.active.focusHeaderText{
	cursor:text;
	color:rgba(255,255,255,1);
	font-weight:600;
	}


.active.focusHeaderText:hover{
	text-decoration: none;
	}


#focusHeaderBox.appear{
    -webkit-animation: focusPopDown 0.35s ease-in-out;
    animation: focusPopDown 0.35s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
	}


#focusHeaderBox.hide{
    -webkit-animation: focusPopUp 0.35s ease-in-out;
    animation: focusPopUp 0.35s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
	}


@keyframes focusPopDown{
	0%   {top:-60px;}
  	100% {top:0px;}
	}

-webkit-@keyframes focusPopDown{
	0%   {top:-60px;}
  	100% {top:0px;}
	}

@keyframes focusPopUp{
	0%   {top:0px;}
  	100% {top:-60px;}
	}

-webkit-@keyframes focusPopUp{
	0%   {top:0px;}
  	100% {top:-60px;}
	}


.asideClosed #focusHeaderBox{
	-webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    left: calc(50% + 44px);
    transform: translate(calc(-50% - 22px), 0%);
	}


.asideOpen #focusHeaderBox{
	-webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    left: calc(50% + 230px);
    transform: translate(calc(-50% - 115px), 0%);
	}


/*------Top Header END------*/



















/*------Aside Menu------*/


#aside{
	position:absolute;
	top:70px;
	width:230px;
	height:calc(100% - 70px);
	overflow-y:auto;
	overflow-x:hidden;
	background-color:#222D31;
	-webkit-transition: width .25s ease-out;
  	-moz-transition: width .25s ease-out;
  	-o-transition: width .25s ease-out;
  	transition: width .25s ease-out;
	}


#aside::-webkit-scrollbar {
  	width: 7px;
	}


#aside::-webkit-scrollbar-thumb {
	border:none;
  	background:rgba(255,255,255,.4) !important;
  	border:solid 2px #222d32;
	}


#asideScrollFiller{
	width:100%;
	height:75px;
	}


.asideClosed #aside{
	width:44px;
	}


.asideLi{
	width:100%;
	height:44px;
	opacity:.5;
	cursor:pointer;
	}

.asideLi label{
	cursor:pointer;
	}

.asideSelected{
	background-color:#1D282C;
	opacity:1;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
	}


.asideSelected .asideSelectedIndicator{
	display:block;
	}


.asideLi:hover{
	background-color:#1D282C;
	opacity:1;
	}


.asideSelectedIndicator{
	display:none;
	position:absolute;
	width:2px;
	height:inherit;
	background-color:#f39c12;
	}


.asideLiIcon{
	width:44px;
	height:44px;
	float:left;
	}


.asideLiIcon svg{
	height:20px;
	width:20px;
	margin-top:12px;
	margin-bottom:12px;
	margin-left:12px;
	margin-right:12px;
	fill:#fff;
	}


.makeIconL svg{
	height:24px;
	width:24px;
	margin-top:10px;
	margin-bottom:10px;
	margin-left:10px;
	margin-right:10px;
	}


.makeIconS svg{
	height:18px;
	width:18px;
	margin-top:13px;
	margin-bottom:13px;
	margin-left:13px;
	margin-right:13px;
	}


.asideLi .toolTipMessage{
	position: fixed;
    left: 44px;
    top:75px;
    z-index: 1000000;
    transform: translate(0%, 0%);
    background:rgba(29,40,44,1);
    height:44px;
    line-height:44px;
    padding:0px;
    padding-right:12px;
    padding-left:4px;
    font-size: 14px;
    border-radius:0px 3px 3px 0px; 
	}


.asideClosed .asideLi.toolTip:hover .toolTipMessage{
	opacity:1 !important;
	display:block !important;
	}


.asideLi .toolTipMessage:after {
    content:'';
    position:absolute;
    top:0px;
    left:0px;
    margin:0px auto;
    width:0px;
    height:0px;
    border-left: solid 4px transparent;
    border-top: solid 5px transparent;
    border-right: solid 5px transparent;
	}


.asideOpen .asideLi .toolTipMessage{
	display:none;
	}


.asideLiTitle{
	opacity:1;
	width:calc(100% - 44px);
	line-height: 44px;
	color:#fff;
	font-weight: 400;
    font-size: 14px;
    float:left;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: opacity .25s ease-out;
  	-moz-transition: opacity .25s ease-out;
  	-o-transition: opacity .25s ease-out;
  	transition: opacity .25s ease-out;
	}


.asideClosed .asideLiTitle{
	opacity:0;
	}


#asideClickOffClose{
	display:none;
	position:fixed;
	width:calc(100% - 230px);
	z-index:98;
	top:0px;
	bottom:0px;
	right:0px;
	}


.asideParentLi{
	width:100%;
	height:auto;
	}


.asideChildLiBox{
	display:none;
	width:100%;
	padding-bottom:12px;
	position:relative;
	}


.open .asideChildLiBox{
	background-color: #1D282C;
	}


.open .asideLi{
	background-color: #1D282C;
	opacity:1;
	}


.asideChildLi{
	cursor:pointer;
	width:calc(100% - 60px);
	margin-left:60px;
	height:27px;
	line-height:27px;
	color:rgba(255,255,255,.5);
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}


.selected.asideChildLi{
	color:rgba(255,255,255,1);
	}


.asideChildLi:hover{
	color:rgba(255,255,255,1);
	}


.asideChildLi:first-child{
	height: 12px;
    line-height: 12px;
    padding-bottom: 20px;
	}


/*------Aside Menu END------*/



















/*------Main Continer------*/


.mainContain{
	background:#F7F7F7;
	position:fixed;
	overflow:auto;
	overflow-y: overlay;
	top:70px;
	left:230px;
	bottom:0px;
	right:0px;
	-webkit-transition: left .25s ease-out;
  	-moz-transition: left .25s ease-out;
  	-o-transition: left .25s ease-out;
  	transition: left .25s ease-out;
	}


#loginContain .mainContain{
	background:none;
	position:unset;
	overflow:unset;
	overflow-y:unset;
	top:unset;
	left:unset;
	bottom:unset;
	right:unset;
	}


.asideClosed .mainContain{
	left:44px;
	}


::-webkit-scrollbar {
  	width: 7px;/* width of the entire scrollbar */
	}


::-webkit-scrollbar-track {
  	background: rgba(255,255,255,.0);/* color of the tracking area */
	}


::-webkit-scrollbar-thumb {
  	background-color: rgba(0,0,0,.5);/* color of the scroll thumb */
  	border-radius: 20px;/* roundness of the scroll thumb */
  	border: 1px solid rgba(255,255,255,1);/* creates padding around scroll thumb */
	}


/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  	background: rgba(0,0,0,.7);
  	cursor:pointer; 
	}


/*------Main Continer  END------*/




/*------ Main Layout END------*/



















/*------Page Containers------*/



.pageContain{
	margin-top:25px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
	}


.max1500{
	max-width:1500px;
	}


.max1250{
	max-width:1250px;
	}


.max1000{
	max-width:1000px;
	}


.max851{
	max-width:851px;
	}

.max800{
	max-width:800px;
	}


.max860{
	max-width:860px;
	}


.maxFullScreen{
	max-width: 100%;
	width: calc(100% - 50px);
	}







/*------Page Containers END------*/
























/*------The Table------*/


.theTable{
	width:100%;
	position:relative;
	z-index:10;
	}

.tableListHeaderContain{
	width:100%;
	position:relative;
	margin-bottom:12px;
	}


.tableListHeaderSearchContain{
	float:left;
	position:relative;
	width:calc(100% - 434px);
	max-width:600px;
	}


.save .tableListHeaderSearchContain{
	width:calc(100% - 580px);
	}


 .noHeader .tableListHeaderContain{
 	display:none;
	}




.tableListHeaderSearchIconBox{
	position:absolute;
	left:0px;
	top:0px;
	width:40px;
	height:35px;
	}


.tableListHeaderSearchIconBox svg{
	height:18px;
	width:18px;
	margin:8.5px 11px;
	fill:#717271;
	}


.active .tableListHeaderSearchIconBox svg{
	fill:#005BA6;
	}


.tableListHeaderSearchBox{
	width:100%;
	height:35px;
	padding-left:40px;
	padding-right:40px;
	font-size:13px;
	border:solid 1px #E9E8E8;
	border-radius:3px;
	}


.active .tableListHeaderSearchBox{
	border:solid 1px #005BA6;
	z-index:50;
	}


.tableListHeaderSearchListCount{
	position:absolute;
	top:0px;
	right:0px;
	height:35px;
	line-height:35px;
	font-size:11px;
	font-weight:700;
	color:#888888;
	padding-right:12px;
	}


.active .tableListHeaderSearchListCount{
	color:#005BA6;
	}




.tableListHeaderFilterButton{
	float:left;
	width:89px;
	height:35px;
	border:solid 1px #E9E8E8;
    border-radius:3px;
    background:#fff;
    margin-left:5px;
	}


.tableListHeaderFilterButtonBox{
	float:left;
	width:36px;
	height:33px;
	}


.tableListHeaderFilterButtonBox svg{
	width:20px;
	height:20px;
	margin:6.5px 8.5px;
	fill: #717271;
	}


.tableListHeaderFilterButtonText{
	float:left;
	height:33px;
	line-height:33px;
	text-transform: uppercase;
	font-size:11px;
	font-weight:bold;
	color:#717271;
	}


.active.tableListHeaderFilterButton{
	border:solid 2px #005BA6;
	}


.active .tableListHeaderFilterButtonBox svg{
	fill: #005BA6;
	margin:5.5px 8.5px;
	}


.active .tableListHeaderFilterButtonText{
	color: #005BA6;
	height:31px;
	line-height:31px;
	}


.active .tableListHeaderFilterButtonBox{
	height:31px;
	}




.tableListHeaderSortBox{
	position:relative;
	float:left;
	width:188px;
	height:35px;
	border:solid 1px #E9E8E8;
    border-radius:3px;
    background:#fff;
    margin-left:5px;
	}




.pop03 select{
	cursor:pointer;
	-webkit-transition: transform 0s ease;
  	-moz-transition: transform 0s ease;
  	-o-transition: transform 0s ease;
  	transition: transform 0s ease;
	}


.pop03:hover select{
	-webkit-transform:scale(1,1);
	transform:scale(1,1);
	}


.pop03:active select{
	-webkit-transform:scale(1,1);
	transform:scale(1,1);
	}


.pop03 label{
	cursor:pointer;
	}







.tableListHeaderSortIconBox{
	float:left;
	width:36px;
	height:33px;
	}


.tableListHeaderSortIconBox svg{
	width:20px;
	height:20px;
	margin:6.5px 8.5px;
	fill: #717271;
	}


.tableListHeaderSortSelect{
	position:absolute;
	top:0px;
	left:0px;
	width: 100%;
    height: 33px;
    line-height: 33px;
    font-size: 12px;
    color: #000;
    padding-left: 36px;
    outline:none;
    border:none;
    color:#717271;
    font-weight:bold;
    font-size:11px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 13px;
	}


.active.tableListHeaderSortBox{
	border:solid 2px #005BA6;
	text-transform: uppercase;
	}


.active .tableListHeaderSortIconBox svg{
	fill: #005BA6;
	margin:5.5px 8.5px;
	}


.active .tableListHeaderSortSelect{
	color: #005BA6;
	height:31px;
	line-height:31px;
	background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23005BA6' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
	background-position: 95%;
	}




.tableHeaderDownloadPrintBox{
	display:none;
	float:left;
	}


.printDownload .tableHeaderDownloadPrintBox{
	display:block;
	}


.tableHeaderListActionBox{
	float: left;
    width: 35px;
    height: 35px;
    border: solid 1px #E9E8E8;
    border-radius: 3px;
    margin-left:5px;
    background:#fff;
	}

.tableHeaderListActionBox svg{
    width:20px;
    height:20px;
    margin:6.5px;
    fill:#717271;
	}


.tableHeaderListActionBox:hover{
    border: solid 1px #005BA6;
    background:#005BA6;
	}


.tableHeaderListActionBox:hover svg{
    fill:#fff;
	}


.printDownload .tableListHeaderSearchContain {
    width: calc(100% - 513px);
	}


.printDownload.save .tableListHeaderSearchContain {
    width: calc(100% - 659px);
	}


.tableHeaderActionItemsBox{
	position:absolute;
	right:0px;
	top:0px;
	}


.tableListHeaderButton{
	float:left;
	font-size:11px;
	width:140px;
	text-transform: uppercase;
	font-weight:700;
	margin-left:6px;
	}


.noActionButtons .tableHeaderActionItemsBox{
	display:none;
	}


.noActionButtons .tableListHeaderSearchContain {
    width: calc(100% - 287px);
    max-width: 100%;
	}


.noActionButtons.printDownload .tableListHeaderSearchContain {
    width: calc(100% - 367px);
    max-width: 100%;
	}


.tableListHeaderButton:focus-visible{
	outline:solid 2px #005BA6;
	outline-offset: 2px;
	-webkit-transform:scale(1.05,1.05);
	transform:scale(1.05,1.05);
	}


.tableListHeaderButtonSave{
	display:none;
	background:#3AB54A;
	}


.save .tableListHeaderButtonSave{
	display:block;
	}


.tableListContain{
	position:relative;
	width:100%;
	}


.tableScrollBottomFiller{
	width:100%;
	height:300px;
	}


.filterOptionsBox{
	display:none;
	width:100%;
	background:#fff;
	border: solid 2px #127FBE;
	border: solid 1px #E9E8E8;
    border-radius: 3px;
    margin-top:12px;
	}


.active.filterOptionsBox{
	border: solid 2px #005BA6;
	}


.filterOptionTitle{
	text-transform: uppercase;
	font-family: 'Roboto Condensed';
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-align: left;
	}

.filterOptionRangeBox{
	margin-top:10px;
	}


.filterOption{
	float:left;
	margin-left:20px;
	margin-top:20px;
	max-height:213px;
	overflow:auto;
	padding-bottom:10px;
	}




.filterOptionRangeBox input{
	border: solid 1px #E9E8E8;
    padding: 7px;
    font-size: 11px;
    width: 80px;
	}


.filterOptionRangeBox input:focus{
	border: solid 1px #005BA6;
	position:relative;
	z-index:auto;
	}


.filterOptionRangeBoxInput1{
	border-radius:3px 0px 0px 3px;
	margin-right:-5px;
	}


.filterOptionRangeBoxInput2{
	border-radius:0px 3px 3px 0px;
	}


.filterOption.active .filterOptionTitle{
	color:#005BA6;
	font-weight:900;
	}


.filterOptionCheckList{
	margin-top:10px;
	}


.filterOptionCheckList li{
	 height:20px;
	}


.filterOptionCheckList li input{
	cursor:pointer;
	width:13px;
	height:13px;
	float:left;
	}


.filterOptionCheckList label{
	 font-size:13px;
	 float:left;
	 margin-left:5px;
	 margin-right:35px;
	 line-height:13px;
	}

.filterOptionCheckList label.active{
	color: #005BA6;
    font-weight: 600;
	}

.filterOptionCheckList label.active svg{
	fill: #005BA6;
	}


.filterOptionCheckList .tableListStatusCircle{
	margin-top:1px;
	margin-left:2px;
	}



.filterOptionChecklistIconText{
	float:left;
	margin-top:-2px;
	margin-left:3px;
	}

.filterOptionChecklistIcon{
	float:left;
	margin-top:-3px;
	}

.filterOptionChecklistIcon svg{
	width:18px;
	height:18px;
	}


.filterOptionSelect{
	width:100%;
	}

.filterOptionSelect select{
    width: 100%;
    height: 25px;
    line-height: 23px;
    font-size: 12px;
    color: #000;
    padding-left:6px;
    border:solid 1px #000;
    border-radius:3px;
    color: #717271;
    font-size: 11px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right:20px;
    margin-top:5px;
    min-width:130px;
	}


.filterOption.active .filterOptionSelect select{
    color: #005BA6;
    border:solid 2px #005BA6;;
    font-weight:bold;
	}











.tableColumsDragDrop.ui-sortable label{
	cursor: -webkit-grab !important;
	cursor: grab !important;
	}


.tableColumsDragDrop.ui-sortable label:active{
	cursor: -webkit-grabbing !important; 
	cursor: grabbing !important;
	}




.ui-sortable span{
	cursor: -webkit-grab !important;
	cursor: grab !important;
	}


.ui-sortable span:active{
	cursor: -webkit-grabbing !important; 
	cursor: grabbing !important;
	}





.filterOptionRangedateRange input{
	width:115px;
	}


.filterOption .toolTipMessage {
    top: -12px;
    padding: 10px 6px;
    font-size: 12px;
    box-shadow: 8px 8px 8px 0 rgb(0 0 0 / 25%);
	}





table {
  	border-collapse: collapse;
  	width: 100%;
  	min-width:fit-content;
  	position: relative;
	}

tr{
	border: 1px solid #E9E8E8;
	height:40px;
	padding-left:12px;
	border-radius:10px;
	width:100%;
	}

tr:nth-child(even) {
  	background-color: #F9F9F9;
	}

tr:nth-child(odd) {
  	background-color: #F4F4F4;
	}

thead tr:first-child {
	text-transform: uppercase;
	height:35px;
  	background:#fff;
  	border-radius:5px;
	}

tr:hover{
	background:#fff;
	cursor:pointer;
	}

th{
	font-family:'Roboto Condensed';
	font-size:12px;
	font-weight:700;
	color:#000;
	text-align: left;
	text-overflow: ellipsis;
    padding-right:10px;
    background:#fff;
    cursor: default;
	}

th span{
	cursor:pointer;
	}

td{
	font-family:'Roboto Condensed';
	font-size:13px;
	font-weight:400;
  	text-align: left;
  	text-overflow: ellipsis;
    padding-right:5px;
	}

th:first-child,
td:first-child{
	padding-left:15px;
	}

.noTextWrap th, .noTextWrap td{
	white-space: nowrap;
	}

.noTextWrap td .theTableInput{
	
	}

.noTextWrap td .theTableInput option{
	
	}



.tableColumName .toolTipMessage{
	text-transform: none;
	font-size:12px;
	}


.width5{width:5px;}
.width10{width:10px;}
.width15{width:15px;}
.width20{width:20px;}
.width25{width:25px;}
.width30{width:30px;}
.width35{width:35px;}
.width40{width:40px;}
.width45{width:45px;}
.width50{width:50px;}
.width55{width:55px;}
.width60{width:60px;}
.width65{width:65px;}
.width70{width:70px;}
.width75{width:75px;}
.width80{width:80px;}
.width85{width:85px;}
.width90{width:90px;}
.width95{width:95px;}
.width100{width:100px;}
.width105{width:105px;}
.width110{width:110px;}
.width115{width:115px;}
.width120{width:120px;}
.width125{width:125px;}
.width130{width:130px;}
.width135{width:135px;}
.width140{width:140px;}
.width145{width:145px;}
.width150{width:150px;}
.width155{width:155px;}
.width160{width:160px;}
.width165{width:165px;}
.width170{width:170px;}
.width175{width:175px;}
.width180{width:180px;}
.width185{width:185px;}
.width190{width:190px;}
.width195{width:195px;}
.width200{width:200px;}


.tableListCellPaddingLeft20{
	padding-left:20px;
	}

.tableListCheckBox{
	width:40px;
	padding-left:14px !important;
	padding-right:14px !important;
	}

.wizard .tableListCheckBox{
	padding-top:5px;
	}

.tableListIconBox{
	width:50px;
	min-width:50px;
	max-width:50px;
	}


.tableLisLayoutIcon{
	width:60px;
	min-width:60px;
	max-width:60px;
	padding-right:10px;
	padding-left:13px !important;
	}


.tableLisLayoutIcon svg{
	-webkit-transition: transform .2s ease;
  	-moz-transition: transform .2s ease;
  	-o-transition: transform .2s ease;
  	transition: transform .2s ease;
	}

.tableLisLayoutIcon:hover svg{
	transform: scale(2.5);
	}




.firstColThumnailImg{
	padding-left:0px !important;
	}



.tableListThumbNailBox{
	position:relative;
	width:100px;
	height:calc(100px * .5625);
	padding: 0px;
	background:rgba(0,0,0,.05);
   	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}

.tableListThumbNailBox:hover{
	transform: scale(1.75);
	z-index:100;
	}


.tableListThumbNailBox9x16:hover{
	background:rgba(0,0,0,0);
	transform: scale(2.4);
	z-index:100;
	}


.tableListThumbNailBox9x16:active{
	background:rgba(0,0,0,0);
	transform: scale(1.9);
	z-index:100;
	}



.tableListThumbNailBox:active{
	transform: scale(1.25);
	z-index:100;
	}


.tableListThumbNail{
	position:relative;
	width:100px;
	height:calc(100px * .5625);
	object-fit: cover;
	margin-bottom:-4px;
	}


.tableListThumbNailBoxIconBox{
	position: absolute;
    top: 15px;
    left: 35px;
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
	}


.tableListThumbNailBoxIconBox svg{
	fill:rgba(255,255,255,0);
	margin-left:3px;
	margin-top:0px;
	width:25px;
	height:25px;
	z-index:10;
	filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 0.4));
	-webkit-transition: all .1s ease;
  	-moz-transition: all .1s ease;
  	-o-transition: all .1s ease;
  	transition: all .1s ease;
	}



.tableListThumbNailBox:hover svg{
	fill:rgba(255,255,255,.7);
	}



.tableListThumbNailBox:hover img{
	filter: drop-shadow(10px 10px 4px rgb(0 0 0 / 0.5));
	}




.tableListThumbnail9x16{
	width:31px;
	margin-left:auto;
	margin-right:auto;
	display:block;
	margin-bottom:0px;
	}




.tableListThumbNailBox9x16 .tableListThumbNailBoxIconBox svg{
	margin-left:5px;
	margin-top:2px;
	width:20px;
	height:20px;
	}




.serviceListViewImage{
	width:25px;
	height:25px;
	margin:0px;
	margin-left:0px;
	margin-left:9px;
	margin-top:9px;
	}


.tableColumSorted{
	color:#005BA6;
	cursor:pointer;
	}


.tableColumSortArrow{
	display:none;
	font-size:11px;
	font-weight:bold;
	margin-left:3px;
	color:#005BA6;
	-webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
  	-o-transition: all .25s ease-out;
  	transition: all .25s ease-out;
	}


.up .tableColumSortArrow{
	transform: rotate(0deg);
	}


.down .tableColumSortArrow{
	transform: rotate(180deg);
	}


.tableColumSorted .tableColumSortArrow{
	display:inline-block;
	}


.theTableInput{
	width:100%;
	border:solid 1px #E9E8E8;
	font-family: 'Roboto Condensed';
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    height:24px;
    border-radius:3px;
    padding-left:6px;
    background-color:#fff;
	}


.theTableInput:focus{
	border:solid 1px #005BA6;
	}


select.theTableInput{
	background: url("data:image/svg+xml,<svg height='13px' width='13px' viewBox='0 0 24 24' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M12 5.83l2.46 2.46c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 3.7c-.39-.39-1.02-.39-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 5.83zm0 12.34l-2.46-2.46c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L12 18.17z'/></svg>") no-repeat;
	background-position:calc(100% - 2px);
	background-color:#fff;
	padding-right:10px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}


.noInlineEdit .theTableInput{
	border:solid 1px rgba(255,255,255,0);
    background-color:rgba(255,255,255,0);
    padding-left:0px;
    pointer-events: none;
	}


.noInlineEdit select.theTableInput{
	background: none;
	background-color:none;
	padding-right:0px;
	pointer-events: none;
	}


.placeholderHideOnFocus:focus::placeholder {
  	color: transparent;
	}






.tableAvatorBox{
	width:40px;
	padding-right:0px !important;
	padding-left:0px !important;
	}


.tableCell1IconBox{
	width:40px;
	padding-right:0px !important;
	padding-left:0px !important;
	}


.tableCell1IconBox svg{
	fill:#000;
	width:22px;
	height:22px;
	margin:7px;
	}


.tableCell1IconLinked{
	width:20px !important;
	height:20px !important;
	margin:8px !important;
	}


.tableActionsButton{
	float:left;
	position:relative;
	width:24px;
	height:24px;
	border-radius:3px;
	border:solid 1px #E9E8E8;
	margin-right:4px;
	margin-top:4px;
	margin-bottom:4px;
	}


.tableActionsButton:hover{
	background:#005BA6;
	border:solid 1px #005BA6;
	}


.tableActionsButton svg{
	width:18px;
	height:18px;
	margin:2px;
	fill:rgba(0,0,0,.5);
	}


.tableActionsButton:hover svg{
	fill:rgba(255,255,255,1);
	}


.tableActionsHoverTitle{
	display:none;
	position: absolute;
    height: 25px;
    line-height: 25px;
    width: max-content;
    padding: 0 10px;
    top: -35px;
    left: 50%;
    font-weight:600;
    transform: translateX(-50%);
    background: #005BA6;
    color: #fff;
    border-radius: 3px;
    z-index: auto;
	}


.tableActionsHoverTitle:after {
    content:'';
    position:absolute;
    top:100%;
    left:0px;
    right:0px;
    margin:0px auto;
    width:0px;
    height:0px;
    border-top: solid 5px #005BA6;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
	}


.tableActionsButton:hover .tableActionsHoverTitle{
	display:block;
	animation: tableButtonTitleFadeIn 1s;
  	-webkit-animation: tableButtonTitleFadeIn 1s;
  	-moz-animation: tableButtonTitleFadeIn 1s;
  	-o-animation: tableButtonTitleFadeIn 1s;
  	-ms-animation: tableButtonTitleFadeIn 1s;
	}


@keyframes tableButtonTitleFadeIn {
  	0% { opacity: 0; }
  	50% { opacity: 0; }
  	75% { opacity: 1; }
  	100% { opacity: 1; }
	}

@-moz-keyframes tableButtonTitleFadeIn {
  	0% { opacity: 0; }
  	50% { opacity: 0; }
  	75% { opacity: 1; }
  	100% { opacity: 1; }
	}

@-webkit-keyframes tableButtonTitleFadeIn {
 	0% { opacity: 0; }
  	50% { opacity: 0; }
  	75% { opacity: 1; }
  	100% { opacity: 1; }
	}

@-o-keyframes tableButtonTitleFadeIn {
  	0% { opacity: 0; }
  	50% { opacity: 0; }
  	75% { opacity: 1; }
  	100% { opacity: 1; }
	}

@-ms-keyframes tableButtonTitleFadeIn {
  	0% { opacity: 0; }
  	50% { opacity: 0; }
  	75% { opacity: 1; }
  	100% { opacity: 1; }
	}




.tableMoreDropDown{
	display:none;
	width:max-content;
	position: fixed;
	z-index:100;
    background: #005BA6;
    border-radius: 3px;
    box-shadow: 15px 15px 15px 0px rgb(0 0 0 / 20%);
    font-weight:600;
	}


.tableMoreDropDownClickOff{
	display:none;
	position:fixed;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	z-index:99;
	}


.tableMoreDropDownLi{
    width: 100%;
    height: 30px;
    color: rgba(255,255,255,.75);
    cursor:pointer;
	}


.tableMoreDropDownLi:hover{
    background: rgba(255,255,255,.1);
	}


.tableMoreDropDownLiIconBox{
    height: 30px;
    width: 30px;
    float: left;
	}


.tableMoreDropDownLiIconBox svg{
    height: 18px;
    width: 18px;
    margin: 6px;
    fill: rgba(255,255,255,1);
	}


.tableMoreDropDownLiText{
    height: 30px;
    line-height: 30px;
    float: left;
    width: calc(100% - 30px);
    color: rgba(255,255,255,1);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right:15px;
	}


.hasOpenInNewTab .tableMoreDropDownLiText{
    width: calc(100% - 60px);
	}


.tableMoreDropDownLiNewtabIconBox{
	height: 30px;
    width: 30px;
    float: left;
	}


.tableMoreDropDownLiNewtabIconBox svg{
    width: 16px;
    height: 16px;
    margin: 7px;
    fill: rgba(255,255,255,.5);
	}


.tableMoreDropDownLiNewtabIconBox:hover svg{
    fill: rgba(255,255,255,1);
	}


.tableActionsBox{
	position:relative;
	padding-right:0px;
	}


.tableActionsBox.tableActionsNumberOfButtons10{
	width:287px;
	min-width:287px;
	}


.tableActionsBox.tableActionsNumberOfButtons9{
	width:259px;
	min-width:259px;
	}


.tableActionsBox.tableActionsNumberOfButtons8{
	width:231px;
	min-width:231px;
	}


.tableActionsBox.tableActionsNumberOfButtons7{
	width:201px;
	min-width:201px;
	}


.tableActionsBox.tableActionsNumberOfButtons6{
	width:173px;
	min-width:173px;
	}


.tableActionsBox.tableActionsNumberOfButtons5{
	width:145px;
	min-width:145px;
	}


.tableActionsBox.tableActionsNumberOfButtons4{
	width:117px;
	min-width:117px;
	}


.tableActionsBox.tableActionsNumberOfButtons3{
	width:89px;
	min-width:89px;
	}


.tableActionsBox.tableActionsNumberOfButtons2{
	width:61px;
	min-width:61px;
	}


.tableActionsBox.tableActionsNumberOfButtons1{
	width:33px;
	min-width:33px;
	}


.tableActionsContain{
	width:fit-content;
    /*position: absolute;*/
    right: 3.5px;
    top: 3.5px;
	}


.tableListStatusBall{
	width:10px;
	height:10px;
	border-radius:10px;
	background:#9B9B9B;
	float:left;
	margin-right:5px;
	}


.blue.tableListStatusBall{
	background:#005BA6;
	}


.green.tableListStatusBall{
	background:#33BF26;
	}


.nowrap{
    white-space: nowrap;
	}







.mySerColDisclaimerBox{
	position:relative;
	overflow: visible;
	}


.mySerDisclaimerSelectBox{
	display:none;
	font-weight:500;
	font-size:13px;
	position:absolute;
	z-index:20;
	border-radius:3px;
	border:solid 1px #E9E8E8;
	background: rgb(255, 255, 255);
	width:100%;
	min-width:145px; 
	left: 0px; 
	top: 0px; 
	box-shadow: rgba(0, 0, 0, 0.1) 10px 10px 15px; 
	text-align:left;
	}


.mySerDisclaimerSelectAllBox{
	opacity:.5;
	cursor:pointer;
	height:30px;
	line-height:30px;
	padding:0px;
	padding-left:10px;
	background-color: rgba(229, 231, 235,1);
	}


.mySerDisclaimerSelectAllBoxSelected{
	opacity:1;
	}


.disclaimerApplyToAll{
	position:absolute;
	padding:0px !important;
	margin:0px !important;
	right:9px;
	top:9px;
	height:12px !important;
	width:12px !important;
	pointer-events: none;
	}


.disclaimerSelectLi{
	position:relative;
	cursor:pointer;
	padding:0px;
	padding-left:10px;
	height:22px;
	line-height:24px;
	}


.disclaimerSelectLi:hover{
	background:#F3F4F6;
	}


.disclaimerSelectCheck{
	position:absolute;
	top:5px;
	right:8px;
	}


.disclaimerSelectLiCustomInput{
	position:relative;
	padding:8px;
	}


.disclaimerSelectLiCustomInput input{
	padding:6px;
	margin:0px;
	width:calc(100% - 30px);
	}


.disclaimerSelectLiCustomInput .disclaimerSelectCheck{
	position:absolute;
	top:13px;
	right:15px;
	}


#disclaimerSelectClickOutBox{
	display:none;
	position:fixed;
	top:0;
	right:0;
	left:0;
	bottom:0;
	z-index:10;
	}


.wizardPage #disclaimerSelectClickOutBox{
	height:10000px;
	}


.tableDropDown{
	position:relative;
	overflow: visible;
	}


.tableDropDownSelectBox{
	display:none;
	font-weight:500;
	font-size:13px;
	position:absolute;
	z-index:20;
	border-radius:3px;
	border:solid 1px #E9E8E8;
	background: rgb(255, 255, 255);
	width:100%;
	min-width:130px; 
	left: 0px; 
	top: 0px; 
	box-shadow: rgba(0, 0, 0, 0.1) 10px 10px 15px; 
	text-align:left;
	}


.tableDropDownLi{
	position:relative;
	cursor:pointer;
	padding:0px;
	padding-left:8px;
	padding-right:20px;
	height:24px;
	line-height:25px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width:100%;
	}


.tableDropDownLi:hover{
	background:#F3F4F6;
	}


.tableDropDownSelectCheck{
	display:none;
	position:absolute;
	top:4px;
	right:8px;
	}


.active .tableDropDownSelectCheck{
	display:block;
	}


.tableDropDownSelectLiNewInput{
	display:none;
	position:relative;
	padding:8px;
	}


.addNew .tableDropDownSelectLiNewInput{
	display:block;
	}


.tableDropDownSelectLiCustomInput input{
	padding:6px;
	margin:0px;
	width:100%;
	}


.tableDropDownSelectLiCustomInput .tableDropDownSelectCheck{
	position:absolute;
	top:13px;
	right:15px;
	}

.tableDropDownAddButton{
	width:calc(100% - 14px);
	margin-bottom:8px;
	margin-top:8px;
	margin-left:auto;
	margin-right:auto;
	display:block;
	text-transform: uppercase;
	font-size:10px;
	font-weight:600;
	height:26px;
	line-height:24px;
	}

.tableDropDownAddButton .buttonIconBox {
    width: 26px;
    height: 26px;
	}


.tableDropDownAddButton .buttonIconBox.iconSizeS svg {
    width: 16px;
    height: 16px;
    margin: 5px;
	}


.addNew .tableDropDownAddButton{
	display:none;
	}


.tableDropDownAddNewButton{
	display:none;
	width:45px;
	background:#3AB54A;
	text-transform: uppercase;
	font-size:10px;
	font-weight:600;
	height:26px;
	line-height:24px;
	position: absolute;
    bottom: 8px;
    right: 8px;
    min-width:0px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius:0px 3px 3px 0px;
	}


.addNew .tableDropDownAddNewButton{
	display:block;
	}

.tableDropDownSelectInput{
	height:26px;
	}


#tableDropDownSelectClickOutBox{
	display:none;
	position:fixed;
	top:0;
	right:0;
	left:0;
	bottom:0;
	z-index:10;
	}





.dragDrop .sortableTable .selected{
    background:#005BA6 !important;
	border:solid 1px #005BA6 !important;
	color:#fff !important;
	}


.dragDrop .sortableTable .selected .tableActionsButton svg{
	fill:#fff;
	}


.dragDrop.noInlineEdit .sortableTable .selected .theTableInput{
	color:#fff;
	}


.dragDrop.noInlineEdit .sortableTable .selected .theTableInput::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	  color:#fff;
	  opacity: 1; /* Firefox */
	}


.dragDrop.noInlineEdit .sortableTable .selected .theTableInput:-ms-input-placeholder { /* Internet Explorer 10-11 */
  	color:#fff;
	}


.dragDrop.noInlineEdit .sortableTable .selected .theTableInput::-ms-input-placeholder { /* Microsoft Edge */
  	color:#fff;
	}

.dragDrop .tableListHeaderSearchContain{
	opacity:.5;
	}


.dragDrop .tableListHeaderSearchBox{
	pointer-events: none;
	}

.dragDrop th{
	pointer-events: none;
	}

.dragDrop .tableListHeaderButtonNew{
	opacity:.25;
	pointer-events: none;
	}

.dragDrop .tableListHeaderFilterButton{
	opacity:.25;
	pointer-events: none;
	}


.theTable.dragDrop .dontAllowOnclickWhenDragAndDrop{
	pointer-events: none;
}



.dragDrop .sortableTable tr:hover{
	cursor: -webkit-grab;
	}


.dragDrop .sortableTable tr:active{
	cursor: -webkit-grabbing; cursor: grabbing;
	}


tbody .ui-sortable-helper{
	width:100% !important;
	box-shadow: 10px 10px 10px rgba(0,0,0,.3);
	transform: scale(0.9);
	}


tbody .ui-state-highlight{
	opacity:.3;
	background:#005BA6 !important;
	height:40px;
	width:100%;
	}


.dragAndDropClickOffSelect{
	display:none;
	position:fixed;
	top:0;
	right:0;
	left:0;
	bottom:0;
	z-index:-1;
	}


.theTableHeaderRow .ui-sortable-helper{
	height:35px;
	line-height:35px;
	padding-left:12px;
	background:rgba(255,255,255,.8);
	}


.ui-sortable .ui-sortable-handle:hover{
	cursor: -webkit-grab !important;
	}


.ui-sortable .ui-sortable-handle:active{
	cursor: -webkit-grabbing; cursor: grabbing !important;
	}



.ui-sortable .ui-sortable-handle:hover{
	cursor: grab !important;
	}


.ui-sortable .ui-sortable-handle:active{
	cursor: grabbing; cursor: grabbing !important;
	}


.ui-sortable .filterOptionCheckList label {
	cursor: grab !important;
	}


.ui-sortable .ui-sortable-handle:active .filterOptionCheckList label {
	cursor: -webkit-grabbing; cursor: grabbing !important;
	}




.theTableHeaderRow .ui-state-highlight{
	opacity:.3;
	background:#005BA6 !important;
	}



.tableColumsDragDrop .ui-state-highlight{
	opacity:.3;
	background:#005BA6 !important;
	margin-bottom:5px;
	height:13px;
	}



.tableListPagination{
	display:none;
	color:rgba(0,0,0,.5);
	font-size:11px;
	position:relative;
	font-family:'Roboto Condensed';
	width:100%;
	background:#fff;
	border:solid 1px #E9E8E8;
	}

.pagination .tableListPagination{
	display:block;
	}


.bottom.tableListPagination{
	margin-top:-1px;
	border-radius:0px 0px 3px 3px;
	}

.top.tableListPagination{
	margin-bottom:-1px;
	border-radius:3px 3px 0px 0px;
	}


.tableListPaginationResultsText{
	position:absolute;
	left:0px;
	width:fit-content;
	height:35px;
	line-height:35px;
	padding-left:10px;
	}

.tableListPaginationPages{
	width:max-content;
	margin-left:auto;
	margin-right:auto;
	height:35px;
	line-height:35px;
	}


.tableListPaginationPagesIconBox{
	float:left;
	width:20px;
	height:35px;
	}

.tableListPaginationPagesIconBox svg{
	fill:rgba(0,0,0,.5);
	width:18px;
	height:18px;
	margin:8.5px 1px;
	}

.tableListPaginationPagesIconBox:hover svg{
	fill:rgba(0,0,0,1);
	}


.tableListPaginationPagesNumber{
	color: rgba(0,0,0,.5);
    float: left;
    width: auto;
    min-width: 0px;
    height: 35px;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
	}

.active.tableListPaginationPagesNumber{
	color:rgba(0,91,166,1);
	color:rgba(0,0,0,1);
	font-weight:900;
	}

.tableListPaginationPagesNumber:hover{
	color:rgba(0,0,0,1);
	}



.theTableInputPagination{
	width:100%;
	border:solid 1px #E9E8E8;
	font-family: 'Roboto Condensed';
    font-size: 11px;
    font-weight: 400;
    text-align: left;
    height:24px;
    border-radius:3px;
    padding-left:6px;
    background-color:#fff;
	}


.theTableInputPagination:focus{
	border:solid 1px #005BA6;
	}


select.theTableInputPagination{
	background: url("data:image/svg+xml,<svg height='13px' width='13px' viewBox='0 0 24 24' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M12 5.83l2.46 2.46c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 3.7c-.39-.39-1.02-.39-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 5.83zm0 12.34l-2.46-2.46c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L12 18.17z'/></svg>") no-repeat;
	background-position:calc(100% - 2px);
	background-color:#fff;
	padding-right:10px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}


.tableListPaginationRowsPerPage{
	position:absolute;
	right:0px;
	top:0px;
	width:fit-content;
	padding-right:7.5px;
	}


.tableListPaginationRowsPerPageText{
	float:left;
	height:35px;
	line-height:35px;
	margin-right:5px;
	}


.tableListPaginationRowsPerPage select{
	float:left;
	width:auto;
	margin-top: 7.5px;
	padding-right: 15px;
	height:20px;
	line-height:20px;
	padding-left:5px;
	}


.tableListPaginationRowsPerPage select:focus {
	width:auto; 
	}


.tableListStatusCircle{
	width: 12px;
    height: 12px;
    background: #AEAEAE;
    border-radius: 12px;
    float: left;
    margin-top: 2px;
    margin-right: 6px;
	}

.tableListStatusCircle.green{
    background: #21C63B;
	}

.tableListStatusCircle.blue{
    background: #005BA6;
	}

.tableListStatusCircle.red{
    background: #E02020;
	}

.tableListStatusCircle.yellow{
    background: #FFD923;
	}

.tableListStatusCircle.gray{
    background: #6D7278;
	}

.tableListStatusText{
	float:left;
	}




/*------The Table END------*/










/*------Form Grid------*/


.gridForm{
	position:relative;
	float:left;
	font-family: 'Roboto Condensed';
	width:100%;
	boarder-radius:3px;
	}


.gridFormActionItemsBox{
	position:absolute;
	top:-7px;
	padding-left:20px;
	right:-150px;
	width:150px;
	}

.gridFormActionItemsBox button{
	font-family: 'Roboto Condensed';
	color:#000;
	font-size:14px;
	text-transform: uppercase;
	font-weight:600;
	text-align:left;
	padding-left:30px !important;
	padding-right:30px;
	min-width:0px;
	width:auto;
	background:rgba(0,0,0,0);
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}



.gridFormActionItemsBox .buttonLoading::after {
    border-top-color: rgba(0,0,0,1);
    border-bottom-color: rgba(0,0,0,.2);
    border-right-color: rgba(0,0,0,.2);
    border-left-color: rgba(0,0,0,.2);
	}

.gridFormActionItemsBox .buttonIconBox.green svg{
    fill:#3AB54A;
	}

.gridFormActionItemsBox .buttonIconBox.gray svg{
    fill:#656565;
	}

.gridFormActionItemsBox .buttonIconBox.blue svg{
    fill:#0066FF;
	}

.gridFormActionItemsBox .buttonIconBox.lightblue svg{
    fill:#0091FF;
	}

.gridFormActionItemsBox .buttonIconBox.red svg{
    fill:#FF0000;
	}

.gridFormActionItemsBox .buttonIconBox.orange svg{
    fill:#FBB040;
	}

.gridFormActionItemsBox .buttonIconBox.purple svg{
    fill:#6236FF;
	}









.formCell{
	position:relative;
	float:left;
	border:solid 1px #E9E8E8;
	background:#fff;
	min-height:55px;
	margin-bottom:-1px;
	margin-right:-1px;
	}

.formCell.doubbleHeight{
	min-height:99px;
	}

.formCell.doubbleHeight textarea{
	height:75px;
	resize:none;
	padding-right:10px;
	}

.active.formCell{
	border:solid 1px #2A5DB1;
	background:#fff;
	z-index:50;
	}

.error.formCell{
	border:solid 1px #E02020;
	background:#fff;
	z-index:50;
	}

.formCell.eighth{
    width:calc(12.50% - 1px);
}
.active.formCell.eighth{
    width:calc(12.50% + 1px);
}

.formCell.quarter{
	width:calc(25% + 1px);
	}

.formCell.half{
	width:calc(50% + 1px);
	}

.formCell.threeQuarters{
	width:calc(75% + 1px);
	}

.formCell.full{
	width:calc(100% + 1px);
	}

.formCell.full-85{
    width:calc(100% - 85px);
}

.formCell.active.nohighlight{
    border:0;
}

.formCell.full-50{
	width:calc(100% - 49px);
	}

.formCell.square-50{
	width:calc(50px + 1px);
}

.formCellLabel{
	width:100%;
	color:rgba(0,0,0,.5);
	font-size:12px;
	font-weight:bold;
	text-transform: uppercase;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left:10px;
    padding-top:9px;
	}

.formCellLabelRequird{
	color:#E02020;
	}

.active .formCellLabel{
	color:#2A5DB1;
	}

.error .formCellLabel{
	color:#E02020;
	}

.formCellInput{
	font-family: 'Roboto Condensed';
	width:100%;
	height:20px;
	font-size:13px;
	font-weight:500;
	color:#000;
	padding-left:10px;
	background:none;
	background:rgba(255,255,255,0);
	outline:none;
	border:none;
	margin-bottom:6px;
	}

.formCellInput[type="date"]{
	padding-right:4px;
	}

.formCellInput::placeholder {
    font-weight:400;
    color:rgba(0,0,0,.3);
	}



select.formCellInput{
	background: url("data:image/svg+xml,<svg height='15px' width='15px' viewBox='0 0 24 24' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M12 5.83l2.46 2.46c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 3.7c-.39-.39-1.02-.39-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 5.83zm0 12.34l-2.46-2.46c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L12 18.17z'/></svg>") no-repeat;
	background-position:calc(100% - 4px);
	background-color:rgba(255,255,255,.0);
	padding-right:10px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}


.viewOnly.formCell{
    background:rgba(255,255,255,.25);
	}

.viewOnly .formCellInput{
    pointer-events: none;
    background:none;
	}


.toolTipIconBox{
	cursor:pointer;
	position:absolute;
	top:6px;
	right:4px;
	width:16px;
	height:16px;
	background:#fff;
	border-radius:15px;
	}

th .toolTipIconBox{
	position:relative;
	top:unset;
	right:unset;
	}

th .toolTipIconBox svg{
	position:absolute;
	top:-1px;
	left:5px;
	}

.toolTipIconBox svg{
	width:16px;
	height:16px;
	fill:rgba(0,0,0,.5);
	}


.toolTipIconBox:hover svg{
	width:16px;
	height:16px;
	fill:#2A5DB1
	}


.formCell .toolTipMessage{
	top: -6px;
    box-shadow: 5px 5px 5px 0 rgb(0 0 0 / 25%);
    padding: 10px 10px;
    font-size: 13px;
    max-width: 190px;
	}

.formCell .toolTip:hover .toolTipMessage {
    display: block;
    animation: tableButtonTitleFadeIn .1s;
    -webkit-animation: tableButtonTitleFadeIn .1s;
    -moz-animation: tableButtonTitleFadeIn .1s;
    -o-animation: tableButtonTitleFadeIn .1s;
    -ms-animation: tableButtonTitleFadeIn .1s;
}


.formSectionHeader{
	width:100%;
	margin-top:50px;
	margin-bottom:10px;
	height:20px;
	}

.formSectionHeaderTextBox{
	width:max-content;
	}


.formSectionHeaderText{
	float:left;
	font-size:14px;
	font-weight:bold;
	color:#000;
	text-transform:uppercase;
	line-height:21px;
	}


.formSectionHeaderToolTipBox{
	float:left;
	margin-left:5px;
	width:20px;
	height:20px;
	}

.formSectionHeaderToolTipBox svg{
	width:16px;
	height:16px;
	margin:2px;
	fill:rgba(0,0,0,.5);
	}

.formSectionHeaderToolTipBox:hover svg{
	width:16px;
	height:16px;
	fill:#2A5DB1;
	}


.formSectionHeaderActionButton{
    font-family: 'Roboto Condensed';
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    padding-left: 30px !important;
    padding-right: 0px;
    min-width: 0px;
    width: auto;
    background: rgba(0,0,0,0);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-top:-5px;
    float:right;
	}


.formSectionHeaderActionButton svg{
	fill:#3AB54A !important;
	}


.formCellServiceImg{
	display:block;
	width:75px;
	height:75px;
	margin-left:auto;
	margin-right:auto;
	margin-top:11px;
	}


.formCell ul{
	padding-left: 26px;
    padding-top: 17px;
    padding-bottom:14px;
	}

.formCell ul li{
	width:max-content;
	margin-bottom:5px;
	font-size:12px;
	}

.formCellUlLink{
	text-decoration: underline;
	color:#0066FF;
	}

.formCell.maxH100{
	max-height:100px;
	overflow:auto;
	}


.formCell li{
	height:20px;
	margin-bottom:5px;
	}

.formCellUlCheckBox{
	float:left;
	width:13px;
	height:13px;
	margin-right:5px;
	}

.formCellUlLabel{
	float:left;
	font-size:13px;
	}


.displayOptionDaysList{
    columns: 7;
    -webkit-columns: 7;
    -moz-columns: 7;
  	width:100%;
  	max-width:100%;
	}

.displayOptionMonthsList{
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
  	width:100%;
  	max-width:350px;
	}


.formCell table{
	margin:10px;
	width:calc(100% - 20px);
	}

.formCell table tr{
	background:#fff;
	border-color:#fff;
	}


.formCellUlLabelToolTip{
	cursor:pointer;
	float:left;
	width:16px;
	height:16px;
	background:#fff;
	border-radius:15px;
	margin-left:5px;
	}

.formCellUlLabelToolTip svg{
	width:16px;
	height:16px;
	fill:rgba(0,0,0,.5);
	}


.formCellUlLabelToolTip:hover svg{
	width:16px;
	height:16px;
	fill:#2A5DB1
	}


input[type="color"].formCellInput{
	width:calc(100% - 10px);
	
	}

.formCellIconBox5050x2{
    margin:12px;
    width:26px;
    height:26px;
    float:left;
    border:solid 1px #212C33;
    border-radius:3px;
    background:#fff;
}

.formCellIconBox5050{
    margin:12px;
	width:26px;
	height:26px;
	float:right;
	border:solid 1px #212C33;
	border-radius:3px;
	background:#fff;
	}


.formCellIconBox5050 svg{
	width:24px;
	height:24px;
	padding:2px;
	}


.active.formCellIconBox5050{
	width:26px;
	height:26px;
	position:absolute;
	right:0px;
	top:0px;
	border:solid 1px #212C33;
	border-radius:3px;
	background:#222D31;
	}


.active.formCellIconBox5050 svg{
	width:24px;
	height:24px;
	padding:2px;
	fill:#fff;
	}

.gridFormProgressiveDisclosureSection.show{
	display:block;
	}

.gridFormProgressiveDisclosureSection.hide{
	display:none;
	}


.formCellStatusContain{
	width:100%;
	float:left;
	padding-left:10px;
	padding-top:3px;
	font-size:13px;
	}

.formCellSearchResultCount{
	position:absolute;
	top:9px;
	right:10px;
	width:max-content;
	color: rgba(0,0,0,1);
    font-size: 12px;
    font-weight: bold;
    cursor:default;
    color:#005BA6;
	}

.formCell .tableListPaginationPages{
	height:26px;
	line-height:26px;
	margin-top:-2px;
	}

.formCell .tableListPaginationPagesIconBox{
	height:26px;
	}

.formCell .tableListPaginationPagesNumber{
	height:26px;
	}

.formCell .tableListPaginationPagesIconBox svg {
    margin: 4px 1px;
	}


.formCell .tableListPaginationPages{
	margin-left:7px;
	margin-right:auto;
	}






/*------Form Grid End------*/






/*------quick tasks------*/



.quicktasksContain{
	margin-top:100px;
	}


.quickTaskBox{
	width:160px;
	height:220px;
	background:#fff;
	border-radius:5px;
	border:solid 1px #E9E8E8;
	float:left;
	margin-bottom:15px;
	margin-right:15px;
	}

.quickTaskBox:nth-child(5n){
	margin-right:0px;
	}


.quickTaskIconBox{
	margin-top:60px;
	margin-bottom:20px;
	width:50px;
	height:50px;
	margin-left:auto;
	margin-right:auto;
	}


.quickTaskIconBox svg{
	margin:5px;
	width:40px;
	height:40px;
	fill:#005BA6;
	}


.quickTaskText{
	width:100%;
	font-family:roboto condensed;
	font-size:15px;
	font-weight:700;
	text-transform: uppercase;
	text-align:center;
	}


/*------Quick tasks END------*/


















/*------Playlist------*/


.headerViewsContain{
	position:absolute;
	right:35px;
	top:0px;
	border-radius:3px;
	}


.rightViewButton{
	float:left;
	width:26px;
	height:26px;
	border-top:solid 1px #212C33;
	border-bottom:solid 1px #212C33;
	background:#fff;
	}

.rightViewButton:first-child{
	border-left:solid 1px #212C33;
	border-radius:3px 0px 0px 3px; 
	}


.rightViewButton:last-child{
	border-right:solid 1px #212C33;
	border-radius:0px 3px 3px 0px; 
	}


.rightViewButton svg{
	width:24px;
	height:24px;
	padding:2px;
	}


.active.rightViewButton{
	background:#222D31;
	}


.active.rightViewButton svg{
	fill:#fff;
	}


.viewContain{
	width:100%;
	}

.viewPageContain{
	display:none;
	width:100%;
	}

.playlistZoneContaineer{
	width:100%;
	border:solid 1px #222D31;
	border-radius:3px;
	padding:15px;
	margin-bottom:10px;
	margin-top:10px;
	height:auto;
	background:#fff;
	-webkit-transition: height .5s ease;
    -moz-transition: height .5s ease;
    -o-transition: height .5s ease;
    transition: height .5s ease;
	}

.playlistZoneContaineer.ui-sortable-helper{
	box-shadow: 25px 25px 25px rgb(0 0 0 / 0.3);
	}


.playlistZoneContaineer.collapsed{
	overflow:hidden;
	}

.playlistZoneContaineer.collapsed .playlistZonesContain{
	display:none;
	}


.playlistZoneContaineerActionItemBox{
	height:26px;
	width:26px;
	border:solid 1px #000;
	border-radius:3px;
	margin-left:5px;
	float:right;
	}


.playlistZoneBoxHeader .playlistZoneContaineerActionItemBox{
	position:absolute;
	height:28px;
	width:28px;
	border:solid 1px rgba(255,255,255,.0);
	background: rgba(255, 255, 255, .15);
	border-radius:3px;
	right:6px;
	top:6px;
	z-index:1;
	}


.playlistZoneBoxHeader .playlistZoneContaineerActionItemBox:hover{
	background: #005BA6;
	}




.playlistZoneContaineerActionItemBox svg{
	height:20px;
	width:20px;
	margin:2px;
	-webkit-transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
	}


.playlistZoneBoxHeader .playlistZoneContaineerActionItemBox svg{
	margin:3px;
	fill:rgba(255,255,255,.90);
	}


.playlistZoneBoxHeader .playlistZoneContaineerActionItemBox:hover svg{
	fill:rgba(255,255,255,1);
	}


.playlistZoneContaineerActionItemCollapseExpandButton svg{
	transform: rotate(-180deg);
	}

.collapsed .playlistZoneContaineerActionItemCollapseExpandButton svg{
	transform: rotate(0deg);
	}


.zones4plus.playlistZoneContaineer{
	overflow-y:auto;
	}

.playlistZoneContaineerHeader{
	width:100%;
	position:relative;
	}

.playlistZoneContaineerHeaderIconOfLayout{
	width:100%;
	float:left;
	max-width:80px;
	}

.layoutLisArea .playlistZoneContaineerHeaderIconOfLayout{
	max-width:80px;
	margin-left:7px;
	margin-top:7px;
	}

.layoutLisArea .playlistZoneAssetThumbNailContain{
	width:95px !important;
	}

.layoutLisArea .playlistZoneAssetActionButtonContain{
	left:98px !important;
	}



.playlistZoneContaineerHeaderIconOfLayout svg{
	width:100%;
	}


.playlistZoneContaineerHeaderName{
	float:left;
	width:calc(100% - 160px);
	text-align:center;
	line-height:44.6px;
	font-size:18px;
	font-weight:bold;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left:10px;
    padding-right:10px;
	}


.playlistZoneContaineerHeaderActionBox{
	width:max-content;
	position:absolute;
	top:10px;
	right:3px;
	}


.playlistZonesContain{
	width:100%;
	margin-top:15px;
	}

.zones4plus .playlistZonesContain{
	width:max-content;
	}

.playlistZoneBox{
	float:left;
	margin-right:15px;
	max-width:500px;
	}

.zones1 .playlistZoneBox{
	width:calc(100%);
	margin-right:auto;
	margin-left:auto;
	display:block;
	float:none;
	clear:both;
	margin-bottom:20px;
	}


.sequenceTimeline .zones1 .playlistZoneBox{
	width:calc(100%);
	margin-right:auto;
	margin-left:auto;
	display:block;
	float:none;
	clear:both;
	margin-bottom:20px;
	}




.zones2 .playlistZoneBox{
	width:calc(50% - 8px);
	}


.sequenceTimeline .zones2 .playlistZoneBox{
	width:calc(50%);
	margin:0px;
	}





.zones3 .playlistZoneBox{
	width:calc(33.33% - 11px);
	}


.sequenceTimeline .zones3 .playlistZoneBox{
	width:calc(33.33%);
	margin:0px;
	}



.zones4plus .playlistZoneBox{
	width:270px;
	margin-right:3px;
	}


.sequenceTimeline .zones4plus .playlistZoneBox{
	width:270px;
	margin-right:0px;
	}

#viewPlaylistPage{
	margin-top:10px;
	}

.viewVertical9x16{
	max-width:450px;
	margin-right:auto;
	margin-left:auto;
	}

.playlistZoneBox:last-child{
	margin-right:0px;
	}

.zones1 .playlistZoneBox:last-child{
	margin-right:auto;
	}



.rightAsideTab .playlistZoneBox{
	margin-top:10px;
	float:left;
	width:calc(100%);
	margin-right:0px;
	max-width:500px;
	}

.rightAsideTab .playlistZoneBox:last-child{
	margin-right:0px;
	}


.playlistZoneBoxHeader{
	position:relative;
	width:100%;
	height:40px;
	border-radius:3px;
	background:green;
	font-size:14px;
	font-weight:bold;
	color:#fff;
	}


.sequenceTimeline .playlistZoneBoxHeader{
	border-radius:0px;
	}



.zoneSingle .playlistZoneBoxHeader{
	background:#384347;
	}

.zone1 .playlistZoneBoxHeader{
	background:#F8A01D;
	}

.zone2 .playlistZoneBoxHeader{
	background:#00B0AB;
	}

.zone3 .playlistZoneBoxHeader{
	background:#BB008F;
	}

.mediaZone .playlistZoneBoxHeader{
	background:#BB008F;
	}



.singleZoneContain{
	width:100%;
	}


.zoneSingle{
	width:100%;
	float:unset;
	margin-left:auto;
	margin-right:auto;
	}



.playlistZoneBoxHeaderName{
	margin-top:11px;
	position:absolute;
	top:0;
	left:15px;
	}

.playlistZoneAspectRatioText{
	opacity:.75;
	padding-left:5px;
	font-size:12px;
	}


.playlistZoneBoxHeaderAssetCount{
	margin-top:11px;
	position:absolute;
	top:0;
	width:100%;
	text-align:center;
	cursor:default;
	}

.playlistZoneBoxHeaderTotalTime{
	margin-top:11px;
	position:absolute;
	top:0;
	right:15px;
	}

.fontWeight100{
	font-weight:100;
	}



.playlistZoneAssets{
	min-height:100px;
	position:relative;
	z-index:1;
	}


.playlistZoneAssetBox{
	width:100% !important;
	position:relative;
	height:auto;
	background:#384347;
	margin-top:2px;
	border-radius:3px;
	box-shadow: 0px 0px 0px rgb(0 0 0 / 0);
	-webkit-transition: box-shadow .2s ease;
  	-moz-transition: box-shadow .2s ease;
  	-o-transition: box-shadow .2s ease;
  	transition: box-shadow .2s ease;
	}

.playlistZoneAssetBox.ui-sortable-helper{
	box-shadow: 15px 15px 15px rgb(0 0 0 / 0.3);
	}

.playlistZoneBox .ui-sortable-helper{
	box-shadow: 15px 15px 15px rgb(0 0 0 / 0.3);
	}


.smallTimeline .playlistZoneAssetBox{
	height:30px !important;
	}

.largeTimeline .playlistZoneAssetBox{
	height:60px !important;
	}

.sequenceTimeline .playlistZoneAssetBox{
	height:auto;
	border-top:1px solid rgba(255,255,255,.75);
	}



.zone1 .playlistZoneAssetBox{
	background:#F8A01D;
	}

.zone2 .playlistZoneAssetBox{
	background:#00B0AB;
	}

.zone3 .playlistZoneAssetBox{
	background:#BB008F;
	}


.mediaZone .playlistZoneAssetBox{
	background:#384347;
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}

.mediaZone .playlistZoneAssetBox:hover{
	background:#3F494C;
	}





.playlistZoneAssetBox:hover{
	z-index:10;
	}

.playlistZoneAssetBox.selected{
	background:#005BA6 !important;
	}

.playlistZoneAssetThumbNailContain{
	float:left;
	position:relative;
	cursor:pointer;
	background:rgba(0,0,0,0.1);
	-webkit-transition: transform .1s ease;
  	-moz-transition: transform .1s ease;
  	-o-transition: transform .1s ease;
  	transition: transform .1s ease;
	}


.mediaZone .playlistZoneAssetThumbNailContain{
	width: calc(60px * 1.7777777778);
	height:60px;
	}


.sequenceTimeline .playlistZoneAssetThumbNailContain{
	width: calc(30px * 1.7777777778);
	height:30px;
	}


.largeTimeline .playlistZoneAssetThumbNailContain{
	width: calc(60px * 1.7777777778);
	height:60px;
	}


.smallTimeline .playlistZoneAssetThumbNailContain{
	width: calc(30px * 1.7777777778);
	height:30px;
	}






.playlistZoneAssetThumbNailContain:hover{
	-webkit-transform:scale(1.6,1.6);
	transform:scale(1.6,1.6);
	position:relative;
	z-index:10;
	background:rgba(0,0,0,.0);
	}


.playlistZoneAssetThumbNailContain:hover img{
	filter: drop-shadow(10px 10px 4px rgb(0 0 0 / 0.5));
	}


.playlistZoneAssetThumbNailContain:active{
	-webkit-transform:scale(1.3,1.3);
	transform:scale(1.3,1.3);
	background:rgba(0,0,0,.0);
	}


.playlistZoneAssetThumbNail{
	border-radius:3px 0px 0px 3px;
	position: relative;
    width: calc(30px * 1.7777777778);
    height: 30px;
    object-fit: cover;
	}


.largeTimeline .playlistZoneAssetThumbNail{
    width: calc(60px * 1.7777777778);
    height: 60px;
	}


.largeTimeline .playlistZoneAssetThumbNail.asset9x16{
    width: calc(60px * .5625);
    height: 60px;
    margin-left:auto;
    margin-right:auto;
    display:block;
	}

.ui-draggable-dragging .playlistZoneAssetThumbNail.asset9x16{
    width: calc(60px * .5625);
    height: 60px;
    margin-left:auto;
    margin-right:auto;
    display:block;
	}



.playlistZoneAssetThumbNailContain:hover .playlistZoneAssetThumbNail{
	border-radius:3px 3px 3px 3px;
	}


.playlistZoneAssetTime{
	position:absolute;
	bottom:0;
	right:0;
	width:fit-content;
	padding:2px;
	color:rgba(255,255,255,.75);
	background:rgba(0,0,0,.5);
	font-size:9px;
	border-radius:2px 0px 0px 0px;
	font-weight:600;
	}


.largeTimeline .playlistZoneAssetTime{
	padding:4px;
	font-size:12px;
	}



.playlistZoneAssetPlayButtonBox{
	position:absolute;
	top:0;
	left:11.66px;
	width:30px;
	height:30px;
	margin-left:auto;
	margin-right:auto;
	}

.playlistZoneAssetPlayButtonBox svg{
	fill:rgba(255,255,255,0);
	margin-left:5px;
	margin-top:5px;
	width:20px;
	height:20px;
	-webkit-transition: all .1s ease;
  	-moz-transition: all .1s ease;
  	-o-transition: all .1s ease;
  	transition: all .1s ease;
	}




.largeTimeline .playlistZoneAssetPlayButtonBox{
	position:absolute;
	top:15px;
	left:38.33px;
	width:30px;
	height:30px;
	margin-left:auto;
	margin-right:auto;
	}

.largeTimeline .playlistZoneAssetPlayButtonBox svg{
	fill:rgba(255,255,255,0);
	margin-left:0px;
	margin-top:0px;
	width:30px;
	height:30px;
	}


.playlistZoneAssetThumbNailContain:hover .playlistZoneAssetPlayButtonBox svg{
	fill:rgba(255,255,255,.6);
	}


.playlistZoneAssetName{
	padding-left:7px;
	width:calc(100% - 183px);
	font-size:12px;
	font-weight:bold;
	color:#fff;
	line-height:30px;
	float:left;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}



.playlistZoneAssetName{
	width:calc(100% - 135px);
	font-size:12px;
	}


.smallTimeline .playlistZoneAssetName{
	width:calc(100% - 170px);
	}







.playlistZoneAssetMoreButton{
	margin-top:3px;
	margin-right:3px;
	width:24px;
	height:24px;
	background:rgba(255,255,255,.15);
	border-radius:3px;
	float:right;
	}

.playlistZoneAssetMoreButton svg{
	padding:1px;
	fill:#fff;
	}


.playlistZoneAssetMoreButton:hover{
	background:#005BA6;
	}

.playlistZoneAssetMoreButton:hover svg{
	fill:#fff
	}


.playlistZoneAssetActionButtonContain{
	position:absolute;
	top:3px;
	right:30px;
	}



.largeTimeline .playlistZoneAssetActionButtonContain{
	top:unset;
	right:unset;
	bottom:6px;
	left:113px;
	}


.playlistZoneAssetActionButtonBox{
	border:solid 1px rgba(255,255,255,0);
	width:24px;
	height:24px;
	float:right;
	margin-right:-1px;
	border-radius:3px;
	}

.playlistZoneAssetActionButtonBox:hover{
	border:solid 1px rgba(255,255,255,0);
	}


.playlistZoneAssetActionButtonBox svg{
	fill:rgba(255,255,255,1);
	width:18px;
	height:18px;
	margin:2px;
	}


.playlistZoneAssetActionDateRangeContain{
	position:absolute;
	bottom:0px;
	right:0px;
	font-weight:bold;
	font-size:10px;
	color:#fff;
	background:rgba(0,0,0,.4);
	padding:6px;
	line-height:12px;
	border-radius:5px 0px 0px 0px;
	}

.smallTimeline .playlistZoneAssetActionDateRangeContain{
	display:none;
	}




.largeTimeline .playlistZoneAssetActionButtonBox{
	float:left;
	}


.dragAndDropClickOffSelectPlaylists{
	display:none;
	position:absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
	}

.playlistZoneAssetPlaceholder{
	width:100%;
	height:30px;
	margin-top:2px;
	background:#005BA6;
	border-radius:3px;
	opacity:.25;
	position:relative;
	z-index:-1;
	}


.playlistLayoutPlaceholder{
	width:100%;
	height:79px;
	background:#000;
	margin-top:10px;
	margin-bottom:10px;
	border-radius:3px;
	opacity:.25;
	position:relative;
	z-index:-1;
	}






.zone1 .playlistZoneAssetPlaceholder{
	background:#F8A01D;
	}

.zone2 .playlistZoneAssetPlaceholder{
	background:#00B0AB;
	}

.zone3 .playlistZoneAssetPlaceholder{
	background:#BB008F;
	}

.zoneSingle .playlistZoneAssetPlaceholder{
	background:#989D9E;
	}


.largeTimeline .playlistZoneAssetPlaceholder{
	height:60px;
	}


.sequenceTimeline .playlistZoneAssetPlaceholder{
	border-radius:0px;
	margin:0px;
	}



.playlistZoneAssetBox.ui-draggable-handle{
	cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
	}

.playlistZoneAssetBox.ui-draggable-handle:active{
	cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
	}


.playlistZoneAssetBox.ui-draggable-dragging{
	max-width:350px;
	height:60px !important;
	background:#384347;
	box-shadow: 20px 20px 20px rgb(0 0 0 / 0.5);
	cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
	}



.playlistZoneAssetBox.ui-draggable-dragging .playlistZoneAssetThumbNail{
    width: calc(60px * 1.7777777778);
    height: 60px;
  }


.playlistZoneAssetBox.ui-draggable-dragging .playlistZoneAssetThumbNailContain {
    width: calc(60px * 1.7777777778);
    height: 60px;
	}


.playlistZoneAssetBox.ui-draggable-dragging .playlistZoneAssetThumbNail.asset9x16{
    width: calc(60px * 0.5625);
    height: 60px;
    margin-left:auto;
    margin-right:auto;
    display:block;
  }


.playlistZoneAssetBox.ui-draggable-dragging .playlistZoneAssetPlayButtonBox{
  position:absolute;
  top:15px;
  left:38.33px;
  width:30px;
  height:30px;
  margin-left:auto;
  margin-right:auto;
  }


.playlistZoneAssetBox.ui-draggable-dragging .playlistZoneAssetPlayButtonBox svg{
  fill:rgba(255,255,255,0);
  margin-left:0px;
  margin-top:0px;
  width:30px;
  height:30px;
  }


.playlistZoneAssetBox.ui-draggable-dragging .playlistZoneAssetActionButtonContain{
  top:unset;
  right:unset;
  bottom:6px;
  left:113px;
  }


.playlistZoneAssetBox.ui-draggable-dragging .playlistZoneAssetActionButtonBox{
  float:left;
  }


.ui-draggable-dragging .playlistZoneAssetThumbNailContain:hover{
	-webkit-transform: scale(1.0,1.0);
    transform: scale(1.0,1.0);
	}




.sequenceTimeline .playlistZoneAssetBox{
	margin-top: 0px;
	border-radius:0px;
	}


.headerViewsContain .toolTipMessage{
	padding:1px 5px;
	top:-4px;
	}




.playlistMediaDragToZone .programFeedIocnContain{
	display:none;
}


.ui-draggable-dragging .programFeedIocnContain{
	display:none;
}


/*------playlist END------*/
















/*------The Table Single Details Page------*/


.detailsPageHeader{
	font-family: 'Roboto Condensed';
	position:relative;
	width:100%;
	margin-bottom:15px;
	float:left;
	}


.detailsPageHeaderBackBox{
	position:absolute;
	top:0;
	left:-45px;
	width:27px;
	height:27px;
	}

.detailsPageHeaderBackBox svg{
	width:22px;
	height:22px;
	margin:2.5px;
	fill:rgba(0,0,0,.7);
	}


.detailsPageHeaderBackBox:hover svg{
	fill:rgba(0,0,0,1);
	}

.detailsPageHeaderText{
	height:27px;
	line-height: 27px;
	font-size:22px;
	font-weight:bold;
	text-transform:uppercase;
	width:calc(100% - 360px);
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}

.detailsPageTabContain{
	position:absolute;
	right:0;
	top:0;
	width:max-content;
	}

.detailsPageTab{
	cursor:pointer;
	width:120px;
	height:27px;
	line-height:25px;
	color:#2A5DB1;
	background:#fff;
	float:left;
	text-transform:uppercase;
	font-size:13px;
	font-weight:bold;
	text-align:center;
	border-top:solid 1px #2A5DB1;
	border-bottom:solid 1px #2A5DB1;
	}

.detailsPageTab:first-child{
	border-left:solid 1px #2A5DB1;
	border-radius:3px 0px 0px 3px;
	}

.detailsPageTab:last-child{
	border-right:solid 1px #2A5DB1;
	border-radius:0px 3px 3px 0px;
	}

.active.detailsPageTab{
	background:#2A5DB1;
	color:#fff;
	}

.tabContain{
	display:none;
	}


.serviceBrandBox{
	width:100%;
	background:#fff;
	border:solid 1px #E9E8E8;
	border-radius:3px;
	padding:45px;
	float:left;
	}

.serviceBrandBoxHeader{
	width:100%;
	position:relative;
	margin-bottom:45px;
	}

.serviceBrandBoxHeaderText{
	font-family: 'Roboto Condensed';
	font-size:18px;
	color:#000;
	font-weight:600;
	width:calc(100% - 144px);
	}

.serviceBrandBoxHeaderAddButton{
	background:#3AB54A;
	position:absolute;
	top:0px;
	right:0px;
	width:135px;
	}

.serviceBrandLiCheckBox{
	float:left;
	}

.serviceBrandLiText{
	float:left;
	margin-top: -2px;
    margin-left: 8px;
	}

.serviceBrandList li{
	clear:both;
	width:100%;
	float:left;
	margin-bottom:20px;
	}

.serviceBrandList{
	columns: 4;
  	-webkit-columns: 4;
  	-moz-columns: 4;
	}




/*------The Table Single Details Page END------*/











/*------layout page------*/



.rightAsideMainContain{
	width:100%;
	-webkit-transition: all .25s ease;
  	-moz-transition: all .25s ease;
  	-o-transition: all .25s ease;
  	transition: all .25s ease;
	}


.close.rightAsideMainContain{
	width:100%;
	-webkit-transition: all .25s ease;
  	-moz-transition: all .25s ease;
  	-o-transition: all .25s ease;
  	transition: all .25s ease;
	}

.open.rightAsideMainContain{
	width:calc(100% - 400px);
	-webkit-transition: all .25s ease;
  	-moz-transition: all .25s ease;
  	-o-transition: all .25s ease;
  	transition: all .25s ease;
	}


.pageContain{
	-webkit-transition: all .25s ease;
  	-moz-transition: all .25s ease;
  	-o-transition: all .25s ease;
  	transition: all .25s ease;
	}

.open.rightAsideMainContain .pageContain{
	width:calc(100% - 50px);
	}



.open.rightAsideMainContain .detailsPageHeaderBackBox {
    left: -10px;
	}



.detailsPageHeaderBackBox {
    -webkit-transition: all .25s ease;
  	-moz-transition: all .25s ease;
  	-o-transition: all .25s ease;
  	transition: all .25s ease;
	}





.detailsPageHeaderText {
    -webkit-transition: all .25s ease;
  	-moz-transition: all .25s ease;
  	-o-transition: all .25s ease;
  	transition: all .25s ease;
	}


.open.rightAsideMainContain .detailsPageHeaderText {
    margin-left: 25px;
    width: calc(100% - 30px);
	}



.close .rightPanelOpenCloseButtonBox{
	width:26px;
	height:26px;
	position:absolute;
	right:0px;
	top:0px;
	border:solid 1px #212C33;
	border-radius:3px;
	background:#fff;
	}


.close .rightPanelOpenCloseButtonBox svg{
	width:24px;
	height:24px;
	padding:2px;
	}




.open .rightPanelOpenCloseButtonBox{
	width:26px;
	height:26px;
	position:absolute;
	right:0px;
	top:0px;
	border:solid 1px #212C33;
	border-radius:3px;
	background:#222D31;
	}


.open .rightPanelOpenCloseButtonBox svg{
	width:24px;
	height:24px;
	padding:2px;
	fill:#fff;
	}


.rightAside{
	position:fixed;
	z-index:1;
	width:400px;
	top:70px;
	right:0px;
	bottom:0px;
	background:#222D31;
	overflow-y:auto;
	-webkit-transition: all .25s ease;
  	-moz-transition: all .25s ease;
  	-o-transition: all .25s ease;
  	transition: all .25s ease;
	}


.close .rightAside{
	right:-400px;
	}


.iframeHorizontal16x9{
	aspect-ratio: 16 / 9;
	background:#000;
	position:relative;
	width: 100%;
	overflow: hidden;
	border:none;
	outline:none;
	border-radius:3px;
	overflow:hidden;
	outline:solid 1px #000;
	}



.rightAsideTabContain{
	width:100%;
	overflow-x:auto;
	background-color:#2D383C;
	}



.rightAside::-webkit-scrollbar {
  	width: 7px;
	}


.rightAside::-webkit-scrollbar-thumb {
	border:none;
  	background:rgba(255,255,255,.4) !important;
  	border:solid 2px #222d32;
	}


.rightAsideTabScrollContain{
	width:max-content;
	}

.rightAsideTabText{
	cursor:pointer;
	float:left;
    background-color: #2D383C;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
	}


.active.rightAsideTabText{
    background-color:#222D31;
	}



.rightAsideTab{
	display:none;
	width:100%;
	padding:25px;
	float:left;
	}


.rightAside .viewOnly .formCellLabel{
	color:#fff;
	}



.rightAside .viewOnly .formCellInput{
	color:#fff;
	}



.rightAside .formSectionHeaderText{
	padding-top:40px;
	padding-bottom:15px;
	color:#fff;
	float:none;
	clear:both;
	}


.raConfigurationBox{
	width:100%;
	margin-bottom:25px;
	float:left;
	}

.raConfigurationSVG{
	width:150px;
	cursor:pointer;
	float:left;
	opacity:.35;
	}

.selected.raConfigurationSVG svg{
	width:100%;
	outline:3px solid #fff;
	border-radius:3px;
	}


.using .raConfigurationSVG{
	opacity:1;
	}


.raConfigurationBox .formCellUlCheckBox{
	width:15px;
	height:15px;
	margin-left:34px;
	margin-top:34px;
	}

.raConfigurationBox label{
    line-height: 84px;
    margin-top: 20px;
    padding-left: 4px;
    color: #fff;
    font-weight: bold;
	}

.rightAsideActionButtons{
	width:100%;
	padding-top:25px;
	padding-left:25px;
	padding-right:25px;
	float:left;
	}

.rightAsideActionButtons button{
	float:left;
	font-weight:bold;
	width:calc(50% - 5px);
	margin-right:10px;
	}

.rightAsideActionButtons button:last-child{
	margin-right:0px;
	}




.rightAsideActionButtonsInTab{
	width:100%;
	padding-bottom:25px;
	float:left;
	}

.rightAsideActionButtonsInTab button{
	float:left;
	font-weight:bold;
	width:calc(50% - 5px);
	margin-right:10px;
	}

.rightAsideActionButtonsInTab button:last-child{
	margin-right:0px;
	}









/*------layout page------*/









/*------google map ui------*/



.property{
    align-items: center;
    display: flex;
    gap: 15px;
    height: 17px;
    justify-content: center;
    position: relative;
    width: 17px;
}

.mapLocationMarker, .mapLocationMarker:after {
    transition: all .3s ease-out
}

.mapLocationMarker:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translate(-50%);
    width: 0;
    z-index: 1
	}

.property .details {
    display: none;
    flex: 1;
    flex-direction: column
	}

.property.highlight {
	height:auto;
    width: auto
	}

.property.highlight .details {
    display: flex
	}

.mapLocationMarker{
	  box-sizing: border-box;
	  border-radius:17px;
	  min-height: 17px;
	  min-width: 17px;
	  height:17px;
	  border: 2px solid #FFFFFF;
	  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.75);
	  font-weight: 700;
      text-align:center;
      padding:2px;
      width:fit-content;
      color:#fff;
      text-shadow: 0px 0px 1px #000;
      font-size: 11px;
      line-height: 10px;
      position:absolute;
      bottom:0;
	  }

.mapLocationMarker.blue{
	background-color: #005BA6;
	}

.mapLocationMarker.green{
	background-color: #6DD400;
	}

.mapLocationMarker.red{
	background-color: #E02020;
	}

.mapLocationMarker.yellow{
	background-color: #FFD923;
	}

.mapLocationMarker.gray{
	background-color: #6D7278;
	}



.mapLocationMarkerDetailsContain{
	background:#fff;
	border-radius:3px;
	min-width:250px;
	width:max-content;
	min-height:30px;
	box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
	z-index:100;
	position:relative;
	}


.mapLocationMarkerDetailsName{
	width:100%;
	padding:7px;
	background:#005BA6;
	color:#fff;
	font-weight:700;
	font-size:14px;
	border-radius:3px 3px 0px 0px;
	}


.mapMarkerDeviceDetailsContain{
	width:100%;
	height:24px;
	padding-left:5px;
	padding-right:5px;
	cursor:pointer;
	}

.mapMarkerDeviceDetailsContain:hover{
	background:rgba(255,255,255,1) !important;
	}


.mapMarkerDeviceDetailsContain:nth-child(odd){
	background:rgba(0,91,166,.1);
	}

.mapMarkerDeviceDetailsContain:nth-child(even){
	background:rgba(0,91,166,.05);
	}


.mapMarkerDeviceDetailsStatus{
	float:left;
	width:12px;
	margin-right:6px;
	}



.mapMarkerDeviceDetailsStatus .toolTipMessage{
	top: -3px;
	box-shadow: 0px 0px 0px 1px rgba(255,255,255,1);
	font-weight:700;
	}


.mapMarkerDeviceDetailsStatus .toolTipMessage.green{
	background-color: #6DD400;
	}

.toolTipMessage.green:after {
    border-top: solid 4px #6DD400;
	}




.mapMarkerDeviceDetailsStatus .toolTipMessage.red{
	background-color: #E02020;
	}


.toolTipMessage.red:after {
    border-top: solid 4px #E02020;
	}



.mapMarkerDeviceDetailsStatus .toolTipMessage.yellow{
	background-color: #FFD923;
	color:rgba(0,0,0,.75);
	}


.toolTipMessage.yellow:after {
    border-top: solid 4px #FFD923;
	}



.mapMarkerDeviceDetailsStatus .toolTipMessage.gray{
	background-color: #6D7278;
	}


.toolTipMessage.gray:after {
    border-top: solid 4px #6D7278;
	}




.mapDeviceStatusCircle{
	  box-sizing: border-box;
	  border-radius:12px;
	  height:12px;
	  width:12px;
	  border: 2px solid #FFFFFF;
	  box-shadow: 0 0px 2px 0px rgba(0,0,0,0.4);
	  font-weight: 700;
      text-align:center;
      padding:2px;
      text-shadow: 0px 0px 1px #000;
      margin-top:6px;
	  }


.mapDeviceStatusCircle.blue{
	background-color: #005BA6;
	}

.mapDeviceStatusCircle.green{
	background-color: #6DD400;
	}

.mapDeviceStatusCircle.red{
	background-color: #E02020;
	}

.mapDeviceStatusCircle.yellow{
	background-color: #FFD923;
	}

.mapDeviceStatusCircle.gray{
	background-color: #6D7278;
	}


.mapMarkerDeviceDetailsName{
	float:left;
	font-size:12px;
	line-height:24px;
	padding-right:15px;
	}


.mapMarkerDeviceDetailsType{
	float:right;
	text-align:right;
	font-size:12px;
	line-height:24px;
	}

a[href^="http://maps.google.com/maps"]{display:none !important}
a[href^="https://maps.google.com/maps"]{display:none !important}

.gmnoprint a, .gmnoprint span, .gm-style-cc {
    display:none;
	}

.gmnoprint div {
    background:none !important;
	}



/*------google map ui END------*/







/*------dashboard------*/



.dashboardContain{
	margin-top:50px;
	}


.dashboardMain{
	width:calc(100% - 362px);
	float:left;
	margin-right:12px;
	}


.dashboardAside{
	width:350px;
	float:left;
	}

.dashboardHeader{
	position:relative;
	width:100%;
	height:35px;
	border-radius: 3px;
	background-color:#005BA6;
	margin-bottom:12px;
	}

.dashboardTabControl{
	position:relative;
	z-index:1;
	padding-top:6px;
	padding-left:6px;
	width:max-content;
	}

.dashboardTabLi{
	width:30px;
	height:23px;
	}

.dashboardTabLi{
	float:left;
	display:flex;
	align-items: center;
    justify-content: center;
	width:30px;
	height:23px;
	}


.dashboardTabLi:first-child{
	border-radius:3px 0px 0px 3px;
	}

.dashboardTabLi:last-child{
	border-radius:0px 3px 3px 0px;
	}



.dashboardTabLi svg{
	fill:#fff;
	width:18px;
	height:18px;
	}

.dashboardTabLi.active{
	background:rgba(255,255,255,.15);
	background:#4084BC;
	}

	
.dashboardTabLi .toolTipMessage{
	top: -13px;
	}


.dashboardProductSelect{
	position:relative;
	z-index:1;
	height:23px;
	width:125px;
	color:#fff;
	font-weight:700;
	margin-left:6px;
	padding-left:7px;
	font-size:12px;
	border-radius:3px;
	border:none;
	outline:none;
	background: url("data:image/svg+xml,<svg height='15px' width='15px' viewBox='0 0 24 24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path d='M12 5.83l2.46 2.46c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 3.7c-.39-.39-1.02-.39-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 5.83zm0 12.34l-2.46-2.46c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L12 18.17z'/></svg>") no-repeat;
	background-position:calc(100% - 2px);
	background-color:rgba(255,255,255,.15);
	}


.dashboardHeaderDownloadReportBox{
	top:0px;
	position:absolute;
	width:100%;
	}


.dashboardHeaderButton{
	display:block;
	margin-left:auto;
	margin-right:auto;
	border:solid 1px #fff;
	height:23px;
	margin-top:6px;
	font-size:11px;
	font-weight:700;
	}




.dashboardHeaderButton .buttonIconBox {
    width: 23px;
    height: 23px;
    top: 0;
    left: 0;
	}


.dashboardHeaderButton .buttonIconBox svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    margin: 4px;
	}


.dashboardStatusChooseContain{
	position:relative;
	z-index:1;
	float:right;
	width:max-content;
	margin-right:6px;
	}


.dashboardStatusChooseLi{
	float:left;
	height:23px;
	min-width:56px;
	margin-left: -1px;
	}


.dashboardStatusChooseLi.active{
	background-color:rgba(255,255,255,.15);
	background-color:#4084BC;
	border-radius:3px;
	z-index:5;
	}

.dashboardStatusChooseLi.active .dashboardStatusChooseLiLeftLine{
	border-left:solid 1px rgba(255,255,255,0);
	}




.dashboardStatusChooseLiLeftLine{
	width:100%;
	border-left:solid 1px rgba(255,255,255,.15);
	height:16px;
	margin-top:3.5px;
	}


.dashboardStatusChooseLiContain{
	display:block;
	width:max-content;
	height:16px;
	margin-left:auto;
	margin-right:auto;
	}


.dashboardStatusChooseLiCircle{
	  box-sizing: border-box;
	  border-radius:10px;
	  height:10px;
	  width:10px;
	  border: 1.5px solid #FFFFFF;
	  box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);
	  font-weight: 700;
      text-align:center;
      padding:2px;
      margin-top:2px;
      margin-right:6px;
      float:left;
	  }


.dashboardStatusChooseLiCircle.blue{
	background-color: #005BA6;
	}

.dashboardStatusChooseLiCircle.green{
	background-color: #6DD400;
	}

.dashboardStatusChooseLiCircle.red{
	background-color: #E02020;
	}

.dashboardStatusChooseLiCircle.yellow{
	background-color: #FFD923;
	}

.dashboardStatusChooseLiCircle.gray{
	background-color: #6D7278;
	}



.dashboardStatusChooseLiText{
	float:left;
	color:#fff;
	font-weight:700;
	font-size:14px;
	line-height:16px;
	}

.dashboardStatusChooseLi .toolTipMessage{
	top:-12px;
	}


.dashboardStatusChooseLi .toolTipMessage.green{
	background-color: #6DD400;
	}

.toolTipMessage.green:after {
    border-top: solid 4px #6DD400;
	}




.dashboardStatusChooseLi .toolTipMessage.red{
	background-color: #E02020;
	}


.toolTipMessage.red:after {
    border-top: solid 4px #E02020;
	}



.dashboardStatusChooseLi .toolTipMessage.yellow{
	background-color: #FFD923;
	color:rgba(0,0,0,.75);
	padding-top:8px;
	padding-bottom:8px;
	}


.toolTipMessage.yellow:after {
    border-top: solid 4px #FFD923;
	}



.dashboardStatusChooseLi .toolTipMessage.gray{
	background-color: #6D7278;
	}


.toolTipMessage.gray:after {
    border-top: solid 4px #6D7278;
	}





.dashboardRightAsaidContainer{
	border:solid 3px #005BA6;
	margin-bottom:-3px;
	}


.dashboardRightAsaidContainer:first-child{
	border-radius:3px 3px 0px 0px;
	}


.dashboardRightAsaidContainer:last-child{
	border-radius:0px 0px 3px 3px;
	}



.dashboardRightAsaidHeader{
	width:100%;
	height:35px;
	background-color:#005BA6;
	color:#fff;
	font-family:'Roboto Condensed';
	font-size:17px;
	line-height:35px;
	padding-left:12px;
	font-weight:700;
	}


.dashboardAsideDataLi{
	height:25px;
	width:100%;
	padding-right:12px;
	padding-left:12px;
	}


.dashboardAsideDataLi:hover{
	background:rgba(255,255,255,1) !important;
	}


.dashboardAsideDataLi:nth-child(odd){
	background:rgba(0,91,166,.1);
	}

.dashboardAsideDataLi:nth-child(even){
	background:rgba(0,91,166,.05);
	}








.dashboardAsideDataLiName{
	font-size:12px;
	color:#000;
	text-align:left;
	float:left;
	line-height:25px;
	}


.dashboardAsideDataLiNumber{
	font-size:12px;
	color:#000;
	float:right;
	font-weight:700;
	line-height:25px;
	}


.dashboardAsideDataTextArea{
	width:100%;
	padding:15px;
	font-size:12px;
	line-height:16px;
	}




.dashboardTab{
	display:none;
	}



#dashboardMap{
	height:calc(100vh - 217px);
	width:100%;
	border-radius: 3px;
	min-height:400px;
	}



.dashboardPieChartContain{
	display:block;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	display: flex;
    justify-content: center;
    border-radius:3px;
	}


.dashboardPieChartBox{
	background:#fff;
	border-radius:3px;
	padding:25px;
	width:100%;
	float:left;
	margin-bottom:12px;
	margin-right:12px;
	}


.dashboardPieChartBox:last-child{
	margin-right:0px;
	}



.dashboardPieChart{
	display:block;
	width:100%;
	max-width:300px;
	margin-left:auto;
	margin-right:auto;
	}


/*------dashboard END------*/











/*------My Content------*/



#myContentContain{
	display:block;
	margin-left:auto;
	margin-right:auto;
	width:calc(100% - 10px);
	padding:5px;
	max-width:1200px;
	height:auto;
	margin-top:20px;
	/* overflow-y: auto; */
	}



#myConHeaderContain{
	width:calc(100% - 10px);
	padding:5px;
	margin-top:25px;
	margin-bottom:25px;
	}


#myConHeaderSearchBox{
	position:relative;
	width:calc(50% - 7px);
	height:40px;
	border:1px solid #CCCCCB;
	border-radius:3px;
	float:left;
	}


#myConHeaderSearchIcon{
	width:40px;
	height:40px;
	float:left;
	}


#myConHeaderSearchIcon svg{
	fill:#888888;
	width:20px;
	height:20px;
	padding:10px;
	padding-left: 12px;
	}


#myConHeaderSearchInput{
	font-size:14px;
	width:calc(100% - 100px);
	height:40px;
	line-height:40px;
	border:none;
	float:left;
	}


#myConHeaderAssetCount{
	position:absolute;
	top:0;
	right:0;
	height:40px;
	line-height:40px;
	font-size:16px;
	font-weight:600;
	text-align:center;
	color:#888888;
	padding-right:14px;
	padding-left:14px;
	}


#myConHeaderFilterSortBox{
	display:none;
	width:calc(25% - 6px);
	height:40px;
	float:left;
	margin-left:10px;
	}


#myConHeaderFilterButton{
	cursor:pointer;
	width:40px;
	height:40px;
	border:1px solid #CCCCCB;
	border-radius:3px;
	float:left;
	-webkit-transition: transform .1s ease-out;
  	-moz-transition: transform .1s ease-out;
  	-o-transition: transform .1s ease-out;
  	transition: transform .1s ease-out;
	}


#myConHeaderFilterButton:hover{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
  	-ms-transform: scale(1.1);
  	-o-transform: scale(1.1);
  	transform: scale(1.1);
	}


#myConHeaderFilterButton:active{
	-webkit-transform: scale(1.00);
	-moz-transform: scale(1.00);
  	-ms-transform: scale(1.00);
  	-o-transform: scale(1.00);
  	transform: scale(1.00);
	}





#myConHeaderFilterButton svg{
	fill:#888888;
	width:26px;
	height:26px;
	padding:7px;
	}


.myConHeaderFilterButtonOpen{
	background-color:#005BA6 !important;
	border:solid 1px #005BA6 !important;
	}

.myConHeaderFilterButtonOpen svg{
	fill:#fff !important;
	}


#myConHeaderSortBox{
	width:calc(100% - 56px);
	height:40px;
	border:1px solid #CCCCCB;
	border-radius:3px;
	margin-left:10px;
	float:left;
	-webkit-transition: transform .1s ease-out;
  	-moz-transition: transform .1s ease-out;
  	-o-transition: transform .1s ease-out;
  	transition: transform .1s ease-out;
	}




.myConHeaderSortBoxActive{
	background-color:#005BA6 !important;
	border:solid 1px #005BA6 !important;
	color:#fff;
	}

.myConHeaderSortBoxActive #myConHeaderSortIconBox svg{
	fill:#fff;
	}

.myConHeaderSortBoxActive #myConHeaderSortSelectBox{
	background-color:#005BA6 !important;
	color:#fff;
	}




.myConHeaderSortBoxHover{
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
  	-ms-transform: scale(1.03);
  	-o-transform: scale(1.03);
  	transform: scale(1.03);
	}

.myConHeaderSortBoxActiveState{
	-webkit-transform: scale(1.00) !important;
	-moz-transform: scale(1.00) !important;
  	-ms-transform: scale(1.00) !important;
  	-o-transform: scale(1.00) !important;
  	transform: scale(1.00) !important;
	}







#myConHeaderSortIconBox{
	width:40px;
	height:40px;
	float:left;
	}

#myConHeaderSortIconBox svg{
	fill:#888888;
	width:26px;
	height:26px;
	padding:7px;
	}

#myConHeaderSortSelectBox{
	font-size:14px;
	color:#888888;
	width:calc(100% - 51px);
	height:40px;
	float:left;
	border:none;
	cursor:pointer;
	}

#myConHeaderUploadButton{
	cursor:pointer;
	font-size:14px;
	font-weight:500;
	height:40px;
	line-height:40px;
	background-color:#005BA6;
	color:#fff;
	float:right;
	border-radius:3px;
	-webkit-transition: transform .15s ease-out;
  	-moz-transition: transform .15s ease-out;
  	-o-transition: transform .15s ease-out;
  	transition: transform .15s ease-out;
	}


#myConHeaderUploadButton:hover{
	-webkit-transform: scale(1.075);
	-moz-transform: scale(1.075);
  	-ms-transform: scale(1.075);
  	-o-transform: scale(1.075);
  	transform: scale(1.075);
	}


#myConHeaderUploadButton:active{
	-webkit-transform: scale(1.00);
	-moz-transform: scale(1.00);
  	-ms-transform: scale(1.00);
  	-o-transform: scale(1.00);
  	transform: scale(1.00);
	}


#myConHeaderUploadButtonIcon{
	width:40px;
	height:40px;
	float:left;
	}


#myConHeaderUploadButtonIcon svg{
	fill:#fff;
	height:26px;
	width:26px;
	padding:7px;
	padding-left:17px;
	}


#myConHeaderUploadButtonText{
	float:left;
	padding:0 17px;
	color:#fff;
	}


#myConMainFilterBox{
	display:none;
	width:calc(100% - 12px);
	border: 1px solid #CCCCCB;
	border-radius:3px;
	margin-top:0px;
	margin-bottom:20px;
	margin-left:auto;
	margin-right:auto;
	}

.filterBoxOpen #myConMainFilterBox{
	display:block;
	}

.myConMainFilterInnerBox{
	width:auto;
	min-width:90px;
	float:left;
	padding:30px;
	}


.myConMainFilterInnerBoxTitle{
	color:#888888;
	font-size:12px;
	text-transform: uppercase;
	margin-bottom:10px;
	font-weight:500;
	}


.myConMainFilterInnerCheckBox{
	position:relative;
	margin-bottom:8px;
	}


.myConMainFilterInnerCheckBox input{
	cursor:pointer;
	width:15px;
	height:15px;
	}


.myConMainFilterInnerCheckBox label{
	position:absolute;
	top:0;
	font-size:13px;
	line-height:15px;
	margin-left:8px;
	}

.myConMainFilterInnerCheckBox:last-child{
	margin-bottom:0px;
	}


.myConMainFilterStatusBall{
	height:12px;
	width:12px;
	background-color:#888888;
	border-radius: 15px;
	position: absolute;
    margin-left: 22px;
    margin-top:1.25px;
	}


#myConMainFilterStatusBallStagged{
	background-color:#FBB040;
	}


#myConMainFilterStatusBallActive{
	background-color:#39B54A;
	}


#myConMainFilterStatusBallInactive{
	background-color:#ED1C24;
	}


#myConMainFilterStatusBox label{
	margin-left:24px;
	}


#myConMainContain .textHighlight{
	background:yellow;
	color:#000 !important;
	}


.myConBoxContain{
	width:calc(25% - 10px);
	margin:5px;
	float:left;
	}


.myConBox{
	background-color:#E6E7E8;
    position: relative;
    width: 100%;
    border-radius:2px;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor:pointer;
    -webkit-transition: transform .15s ease-out;
  	-moz-transition: transform .15s ease-out;
  	-o-transition: transform .15s ease-out;
  	transition: transform .15s ease-out;
	}


.myConBox:hover{
	z-index:1000;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
  	-ms-transform: scale(1.05);
  	-o-transform: scale(1.05);
  	transform: scale(1.05);
	}

.myConBox:active{
	-webkit-transform: scale(1.00);
	-moz-transform: scale(1.00);
  	-ms-transform: scale(1.00);
  	-o-transform: scale(1.00);
  	transform: scale(1.00);
	}


.myConMainPlayButton{
	 height:49px;
	 width:50px;
	 margin: auto;
     position: absolute;
     top: 0; left: 0; bottom: 0; right: 0;
	}


.myConMainPlayButtonCircle{
	fill:#005BA6;
	}


.myConMainPlayButtonTriangle{
	fill:#FFFFFF;
	}


.myConMainVideoLength{
	font-size:12px;
	padding:3px 6px;
	border-radius:3px;
	position:absolute;
	bottom:12px;
	right:12px;
	color:#fff;
	background-color:rgba(0,0,0,.65);
	}


.myConMainTitle{
	width:100%;
	height:40px;
	line-height:40px;
	font-size:14px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight:600;
    cursor:default;
	}


.myConMainStatusBox{
	width:100%;
	height:13px;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	}


.myConMainStatusIndicator{
	width:12px;
	height:12px;
	border-radius:12px;
	background-color:#eee;
	float:left;
	}


.statusStagged .myConMainStatusIndicator{
	background-color:#FBB040;
	}

.statusStagged .myConStatusText{
	color:#FBB040;
	font-weight:700;
	}


.statusActive .myConMainStatusIndicator{
	background-color:#39B54A;
	}

.statusActive .myConStatusText{
	color:#39B54A;
	font-weight:700;
	}


.statusInactive .myConMainStatusIndicator{
	background-color:#ED1C24;
	}

.statusInactive .myConStatusText{
	color:#ED1C24;
	font-weight:700;
	}


.statusDisabled .myConMainStatusIndicator{
	background-color:#888888;
	}

.statusDisabled .myConStatusText{
	color:#888888;
	font-weight:700;
	}


.myConMainStatusDateRange{
	margin-left:18px;
	font-size:12px;
	height:12px;
	line-height:12px;
	color:#808285;
	}


.myConMainTagBox{
	position:relative;
	margin-top:5px;
	margin-bottom:15px;
	width:100%;
	height:27px;
	}


.myConMainTagBoxWrapper{
	overflow:hidden;
	position:absolute;
    width: 100%;
    height:27px;
    z-index: 20;
    padding: 10px;
    padding-right:0px;
    margin-top: -5px;
    margin-left: -5px;
    border-radius: 3px;
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    -ms-box-sizing: unset;
    box-sizing: unset;
    background-color:rgba(247,247,247,.5);
    -webkit-transition: all .5s ease-out;
  	-moz-transition: all .5s ease-out;
  	-o-transition: all .5s ease-out;
  	transition: all .5s ease-out;
	}

.myConMainTagBoxWrapperClick{
	max-height:500px;
	}



.myConMainTag{
	font-size:11px;
	width:fit-content;
	background:#005BA6;
	color:#fff;
	padding:3px 10px;
	border-radius:30px;
	text-align:center;
	float:left;
	margin-right:3px;
	margin-bottom:2px;
	cursor:default;
	-webkit-transition: all .15s ease-out;
  	-moz-transition: all .15s ease-out;
  	-o-transition: all .15s ease-out;
  	transition: all .15s ease-out;
	}



.myConMainTagFade{
	width: 100%;
	margin-left:-10px;
    height: 15px;
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(rgba(247,247,247,0), rgba(247,247,247,1));
	}




.myConMainTypeIconBox{
	width:25px;
	height:25px;
    border-radius: 3px;
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    background-color: rgba(0,0,0,.65);
	}

.myConMainTypeIconBox svg{
	fill:#fff;
	padding:2px;
	width:21px;
	height:21px;
	-webkit-box-sizing: unset;
  	-moz-box-sizing: unset;
  	-ms-box-sizing: unset;
  	box-sizing: unset;
	}

.myConMainSoundIconBox{
	width:25px;
	height:25px;
    border-radius: 3px;
    position: absolute;
    top: 12px;
    left: 40px;
    color: #fff;
    background-color: rgba(0,0,0,.65);
	}

.myConMainSoundIconBox svg{
	fill:#fff;
	padding:2px;
	width:21px;
	height:21px;
	-webkit-box-sizing: unset;
  	-moz-box-sizing: unset;
  	-ms-box-sizing: unset;
  	box-sizing: unset;
	}






.typeImage .myConVideoIcon{
	display:none;
	}

.typeImage .myConMainPlayButton{
	display:none;
	}

.typeVideo .myConImgIcon{
	display:none;
	}


.loaderPercentText{
	font-size:12px;
	font-weight:600;
	text-align:center;
	line-height:80px;
	height: 80px;
    width: 80px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	}


.myConMainLoaderBox{
	display:none;
	height: 80px;
    width: 80px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	}


.loaderRing{
	display: inline-block;
  	position: relative;
  	width: 80px;
  	height: 80px;
	}


.loaderRing div{
  	box-sizing: border-box;
  	display: block;
  	position: absolute;
  	width: 64px;
  	height: 64px;
  	margin: 8px;
  	border: 3px solid #005BA6;
  	border-radius: 50%;
  	animation: loaderRing .9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  	border-color: #005BA6 transparent transparent transparent;
	}


.loaderRing div:nth-child(1){
  	animation-delay: -0.3s;
	}


.loaderRing div:nth-child(2){
  	animation-delay: -0.2s;
	}


.loaderRing div:nth-child(3){
  	animation-delay: -0.1s;
	}


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


.loaderBarBox{
	position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    display: block;
    background-color:#D1D3D4;
    width: calc(100% - 40px);
    width: 130px;
    height: 3px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
	}


.loaderBarFill{
	background-color:#005BA6;
	width:0%;
	height:3px;
	border-radius:10px;
	}


.myConErrorMessageBox{
	position: absolute;
    top: 0;
    width: calc(100% - 30px);
    padding: 15px;
    text-align: center;
    color: red;
    max-height: 90px;
    overflow: auto;
    font-size:12px;
	}


.myConErrorMessageBoxButtton{
	position: absolute;
    bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    height: 30px;
    line-height: 30px;
    background-color: red;
    color: #fff;
    border-radius: 3px;
    display: block;
    right: 0;
    left: 0;
    width: 100px;
    text-align: center;
    -webkit-transition: transform .15s ease-out;
    -moz-transition: transform .15s ease-out;
    -o-transition: transform .15s ease-out;
    transition: transform .15s ease-out;
	}


.myConErrorMessageBoxButtton:hover{
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
	}

.myConErrorMessageBoxButtton:active{
	-webkit-transform: scale(1.00);
    -moz-transform: scale(1.00);
    -ms-transform: scale(1.00);
    -o-transform: scale(1.00);
    transform: scale(1.00);
	}



.uploadingFillerBox .myConBox:hover{
	-webkit-transform: scale(1.00) !important;
    -moz-transform: scale(1.00) !important;
    -ms-transform: scale(1.00) !important;
    -o-transform: scale(1.00) !important;
    transform: scale(1.00) !important;
	}


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

.myConOrentedvertical{
	width:auto;
	max-height:473px;
	}


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


.contentvertical{
	width:auto;
	margin-left:auto;
	margin-right:auto;
	display:block;
	height:750px;
	}





/*--------- Integrations  -----------*/




.integration_weather_page .wizardLayoutExsampleContainer{
	transform: scale(.3895);
	}


.integration_weather_page .wizardLayoutExsampleOuterContainer{
	width:748px;
	height:421px;
	}


.invirtedFormHeader{
	width:100%;
	padding:10px 20px;
	font-weight:600;
	background:#2A5BD1;
	color:#fff;
	text-align:center;
	}












@media (max-width:1550px){

	.asideOpen .dashboardContain{
		padding-right:50px;
		padding-left:50px;
		}

	.asideOpen .dashboardAside{
		width:300px;
		}


	.asideOpen .dashboardMain {
    	width: calc(100% - 312px);
		}
	

	.lbIframeCenter16x9{
		max-width: calc(100vw - 70px);
		}

	.playlistZoneAspectRatioText{
		display:none;
		}

	.zones3 .playlistZoneBox{
		margin-right:3px;
		}

	.zones3 .playlistZoneBox {
    	width: calc(33.33% - 3px);
		}


}













@media (max-width:1350px){

	.gridFormActionItemsBox{
		position: relative;
	    top: unset;
	    right: unset;
	    width: 100%;
	    padding: 3px;
	    float: left;
	    border: solid 1px #E9E8E8;
	    margin-bottom: -1px;
	    border-radius: 3px 3px 0px 0px;
		}

	.gridFormActionItemsLi{
		float:left;
		}

	.gridFormActionItemsBox button {
	    padding-right: 20px;
		}



	.asideopen .dashboardContain{
		margin-top:25px;
		padding-right:25px;
		padding-left:25px;
		}

	.dashboardContain{
		margin-top:25px;
		padding-right:25px;
		padding-left:25px;
		}

	.dashboardAside{
		width:275px;
		}


	.dashboardMain {
    	width: calc(100% - 287px);
		}

	.dashboardHeaderButton{
		margin-left:235px;
		}
	

	.gridFormActionItemsFiller{
		display:none;
		}


	.rightAsideMainContain.open .zones3.playlistZoneContaineer{
		overflow-y:auto;
		}

	.rightAsideMainContain.open .zones3 .playlistZonesContain{
		width:max-content;
		}

	.rightAsideMainContain.open .zones3 .playlistZoneBox{
		width:270px;
		margin-right:3px;
		}



}








@media (max-width:1330px){


	.max1000{
    	width: calc(100% - 50px);
		}


}






@media (max-width:1300px){


	.asideOpen .dashboardMain {
    	width: calc(100%);
    	margin-right: 0px;
		}


	.asideOpen .dashboardAside {
    	width: 100%;
    	margin-top:12px;
		}





}














@media (max-width:1250px){


	.quicktasksContain{
		max-width:685px;
		}

	.quickTaskBox:nth-child(5n) {
    	margin-right: 15px;
		}

	.quickTaskBox:nth-child(4n) {
    	margin-right: 0px;
		}

	.rightAsideMainContain.open .zones2.playlistZoneContaineer{
		overflow-y:auto;
		}

	.rightAsideMainContain.open .zones2 .playlistZonesContain{
		width:max-content;
		}

	.rightAsideMainContain.open .zones2 .playlistZoneBox{
		width:270px;
		margin-right:3px;
		}


}











@media (max-width:1150px){

	.detailsPageHeaderBackBox {
	    left: -10px;
		}

	.detailsPageHeaderText{
		margin-left:25px;
		width:calc(100% - 380px);
		}



}







@media (max-width:1150px){


	.max851{
    	width: calc(100% - 50px);
		}

	.max800{
    	width: calc(100% - 50px);
		}


}











@media (max-width:1100px){


	.printDownload.save .tableListHeaderSearchContain{
		width: calc(100% - 372px);
		max-width: 700px;
		}


	.printDownload.save .tableListHeaderFilterButton{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:0px;
		}


	.printDownload.save .tableListHeaderSortBox{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:6px;
		}

	.printDownload.save .tableHeaderDownloadPrintBox{
		position:absolute;
		top:0;
		right:292px;
		}


	.quicktasksContain{
		max-width:100%;
		margin-top:0px;
		padding:50px;
		}

	.quickTaskBox{
		width:calc(25% - 15px);
		margin-left:7.5px;
		margin-right:7.5px;
		}

	.quickTaskBox:nth-child(4n) {
    	margin-right:7.5px;
		}


	.quickTaskBox:nth-child(5n) {
    	margin-right:7.5px;
		}

	.contentvertical{
		width:100%;
		max-width:422px;
		height:auto;
		}

}










@media (max-width:1050px){


	.asideClosed .dashboardMain {
    	width: 100%;
    	margin-right: 0px;
		}


	.asideClosed .dashboardAside {
    	width: 100%;
    	margin-top:12px;
		}



}
















@media (max-width:1000px){


	.asideOpen .save .tableListHeaderSearchContain {
		float:none;
	    width: calc(100% - 292px);
		}


	.asideOpen .save .tableListHeaderFilterButton{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:0px;
		}


	.asideOpen .save .tableListHeaderSortBox{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:6px;
		}


	.lbIframeCenter{
	    max-width: calc(100% - 70px);
		}



}






@media (max-width:950px){


	.printDownload .tableListHeaderSearchContain{
		width: calc(100% - 226px);
		max-width: 700px;
		}


	.printDownload .tableListHeaderFilterButton{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:0px;
		}


	.printDownload .tableListHeaderSortBox{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:6px;
		}

	.printDownload .tableHeaderDownloadPrintBox{
		position:absolute;
		top:0;
		right:146px;
		}

	.noActionButtons.printDownload .tableHeaderDownloadPrintBox{
		position:absolute;
		top:0;
		right:0px;
		}

	.noActionButtons.printDownload .tableListHeaderSearchContain {
	    width: calc(100% - 80px);
	    max-width: 100%;
		}


	.asideOpen .quickTaskBox{
		width:calc(33.33333333333333% - 15px);
		}



	
	.asideOpen .dashboardStatusChooseContain {
	    margin-right: 6px;
	    margin-top: 35px;
		}


	.asideOpen .dashboardHeader {
	    height: 70px;
		}

	.asideOpen .dashboardPieChartContain{
		display:block;
		}



}













@media (max-width:900px){



	.asideOpen .tableListContain {
		display:block;
	    position: relative;
	    width: calc(100% + 50px);
	    margin-left: -25px;
	    padding-left: 25px;
	    padding-right: 0px;
	    overflow-y:scroll;
	    overflow-x:visible;
		}

	.asideOpen .tableListInnerContain{
	  	width:fit-content;
	  	min-width:100%;
	  	padding-right:25px;
		}

	/* Hide scrollbar for Chrome, Safari and Opera */
	.asideOpen .tableListContain::-webkit-scrollbar {
	  	display: none;
		}

	/* Hide scrollbar for IE, Edge and Firefox */
	.asideOpen .tableListContain{
	  	-ms-overflow-style: none;  /* IE and Edge */
	  	scrollbar-width: none;  /* Firefox */
		}


	.tableListContain {
		display:block;
	    position: relative;
	    width: calc(100% + 50px);
	    margin-left: -25px;
	    padding-left: 25px;
	    padding-right: 0px;
	    overflow-y:scroll;
	    overflow-x:visible;
		}


	.tableListInnerContain{
	  	width:fit-content;
	  	min-width:100%;
	  	padding-right:25px;
		}

	/* Hide scrollbar for Chrome, Safari and Opera */
	.tableListContain::-webkit-scrollbar {
	  	display: none;
		}

	/* Hide scrollbar for IE, Edge and Firefox */
	.tableListContain{
	  	-ms-overflow-style: none;  /* IE and Edge */
	  	scrollbar-width: none;  /* Firefox */
		}


	.tableListHeaderContain{
		margin-bottom:15px;
		}

	.filterOptionsBox{
		margin-bottom:15px;
		}


	.detailsPageHeaderText {
    	width: calc(100% - 25px);
		}


	.detailsPageTabContain {
	    position: relative;
	    width: 100%;
	    margin-top: 10px;
		}

	.detailsPageTab{
	    width: 33.33333333333333333333%;
		}


	.serviceBrandList {
	    columns: 3;
	    -webkit-columns: 3;
	    -moz-columns: 3;
		}


}










@media (max-width:850px){


	.asideClosed .save .tableListHeaderSearchContain {
		float:none;
	    width: calc(100% - 292px);
		}


	.asideClosed .save .tableListHeaderFilterButton{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:0px;
		}


	.asideClosed .save .tableListHeaderSortBox{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:6px;
		}

	.printDownload.save .tableListHeaderSearchContain{
		width: calc(100% - 372px);
		max-width: 700px;
		}



}








@media (max-width:800px){


	#lpResetPWrequirmentsContain{
		position: relative;
    	margin-left: auto;
    	margin-right: auto;
    	margin-top: 0px;
    	margin-bottom: 20px;
    	width: 224px;
		}


	.tableListPaginationPages {
	    width: max-content;
	    height: 35px;
	    line-height: 35px;
	    margin-top: 25px;
		}


	.asideOpen .quickTaskBox{
		width:calc(50% - 15px);
		}

	.asideClosed .quickTaskBox{
		width:calc(33.33333333333333333% - 15px);
		}





}



















@media (max-height:750px){


	#loginContain{
		margin-top:100px;
		}


	@media only screen and (orientation: landscape) {
    	
    	#loginContain{
			margin-top:70px;
			}

		#headerSearchResultsBox{
			max-height:40vh;
			}


	}



}



















@media (max-width:750px){


	#antHeaderLogo{
		position:fixed;
		left:-230px;
		width:230px;
		-webkit-transition: left .25s ease-out;
  		-moz-transition: left .25s ease-out;
  		-o-transition: left .25s ease-out;
  		transition: left .25s ease-out;
  		z-index:99;
  		box-shadow: 0 0 0px 0 rgba(0,0,0,0);
		}


	.asideClosed #antHeaderLogo{
		box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
		}


	#focusHeaderBox{
	    left: calc(50% + 0px);
	    transform: translate(calc(-50% - 0px), 0%);
		}


	.asideClosed #focusHeaderBox{
	    left: calc(50% + 0px);
	    transform: translate(calc(-50% - 0px), 0%);
		}


	.asideOpen #focusHeaderBox{
	    left: calc(50% + 0px);
	    transform: translate(calc(-50% - 0px), 0%);
		}


	#asideOpenCloseButton svg{
		width:30px;
		height:30px;
		margin:20px;
		-webkit-transform: rotate(180deg);
	  	-moz-transform: rotate(180deg);
	  	-ms-transform: rotate(180deg);
	  	-o-transform: rotate(180deg);
	  	transform: rotate(180deg);
		}


	.asideClosed #antHeaderLogo svg {
    	width: 100px;
    	height: 68px;
		}


	.asideClosed .antLwords {
    	opacity: 1;
		}


	#asideOpenCloseButtonDesktop{
		display:none;
		}


	#asideOpenCloseButtonPhone{
		display:block;
		}


	.asideClosed #antHeaderLogo{
		left:0px;
		width:230px;
		}


	#aside{
		top: 70px;
		left:-230px;
		width:230px;
		-webkit-transition: left .25s ease-out;
  		-moz-transition: left .25s ease-out;
  		-o-transition: left .25s ease-out;
  		transition: left .25s ease-out;
  		z-index:99;
		}


	.asideClosed #aside{
		width:230px;
		left:0px;
		}


	.asideClosed .asideLiTitle {
    	opacity: 1;
		}


	.asideClosed #asideClickOffClose{
		display:block;
		}


	.mainContain{
		left:0;
		min-height:calc(100% - 70px);
		}


	.asideClosed .mainContain {
	    left: 0;
		}


	#customerLogo{
    	width: calc(100% - 140px);
		}


	.asideClosed #customerLogo{
    	width: calc(100% - 140px);
		}


	.tableActionsButton{
		display:none;
		}


	.tableMoreButton{
		display:block;
		}


	.tableActionsBox {
	    width: 35px !important;
		}


	.tableActionsButton {
    	float: right;
   	 	margin-right: 8px;
		}


	.tableListContain{
		display:block;
	    position: relative;
	    width: calc(100% + 50px);
	    margin-left: -25px;
	    padding-left: 25px;
	    padding-right: 0px;
	    overflow-y:scroll;
	    overflow-x:visible;
		}


	.tableListInnerContain{
	  	width:fit-content;
	  	min-width:100%;
	  	padding-right:25px;
		}


	/* Hide scrollbar for Chrome, Safari and Opera */
	.tableListContain::-webkit-scrollbar {
	  	display: none;
		}


	/* Hide scrollbar for IE, Edge and Firefox */
	.tableListContain{
	  	-ms-overflow-style: none;  /* IE and Edge */
	  	scrollbar-width: none;  /* Firefox */
		}


	.householdAssetSummaryContain {
	    margin-bottom: 15px;
		}


	.tableListHeaderContain{
		margin-bottom:15px;
		}


	.tableActionsBox.tableActionsNumberOfButtons10,
	.tableActionsBox.tableActionsNumberOfButtons9,
	.tableActionsBox.tableActionsNumberOfButtons8,
	.tableActionsBox.tableActionsNumberOfButtons7,
	.tableActionsBox.tableActionsNumberOfButtons6,
	.tableActionsBox.tableActionsNumberOfButtons5,
	.tableActionsBox.tableActionsNumberOfButtons4,
	.tableActionsBox.tableActionsNumberOfButtons3,
	.tableActionsBox.tableActionsNumberOfButtons2,
	.tableActionsBox.tableActionsNumberOfButtons1{
		width:33px;
		min-width:33px;
		}


	.asideOpen .save .tableListHeaderSearchContain {
		float:none;
	    width: calc(100% - 292px);
		}


	.asideOpen .save .tableListHeaderFilterButton{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:0px;
		}


	.asideOpen .save .tableListHeaderSortBox{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:6px;
		}


	.save .tableListHeaderSearchContain {
		float:none;
	    width: calc(100% - 292px);
		}


	.save .tableListHeaderFilterButton{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:0px;
		}


	.save .tableListHeaderSortBox{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:6px;
		}

	.printDownload.save .tableListHeaderSearchContain{
		width: calc(100% - 372px);
		max-width: 700px;
		}

	.asideClosed .asideLi .toolTipMessage{
		display:none;
		}


	.tableActionsContain {
	    right: 0px;
		}


	.open.rightAsideMainContain{
		width:100%;
		}

	.open .rightAside{
		position:relative;
		width:100%;
		min-height:200px;
		height:auto;
		margin-top:25px;
		top:unset;
		}

	.close .rightAside{
		position:relative;
		display:none;
		width:100%;
		min-height:200px;
		height:auto;
		margin-top:25px;
		}


	.lbIframeCenter{
	    max-width: calc(100% - 50px);
	    top:25px;
		}


	.quicktasksContain {
	    padding: 15px;
	    padding-top:22.5px;
		}

	.asideOpen .quickTaskBox{
		width:calc(33.33333333333333333% - 15px);
		}

	.asideClosed .quickTaskBox{
		width:calc(33.33333333333333333% - 15px);
		}


	.dashboardStatusChooseContain {
	    margin-right: 6px;
	    margin-top: 35px;
		}


	.dashboardHeader {
	    height: 70px;
		}

	.dashboardPieChartContain{
		display:block;
		}

	.asideOpen .dashboardStatusChooseContain{
		width:fit-content;
		margin-top:35px;
		}

	.dashboardStatusChooseContain{
		width:fit-content;
		margin-top:35px;
		}

	.dashboardHeaderButton {
	    margin-right: 7px;
	    margin-left: auto;
		}


	.asideClosed .asideLi.toolTip:hover .toolTipMessage{
		opacity:0 !important;
		display:none !important;
		}


	.rightAsideMainContain.close .zones3.playlistZoneContaineer{
		overflow-y:auto;
		}

	.rightAsideMainContain.close .zones3 .playlistZonesContain{
		width:max-content;
		}

	.rightAsideMainContain.close .zones3 .playlistZoneBox{
		width:270px;
		margin-right:3px;
		}


	.rightAsideMainContain.close .zones2.playlistZoneContaineer{
		overflow-y:auto;
		}

	.rightAsideMainContain.close .zones2 .playlistZonesContain{
		width:max-content;
		}

	.rightAsideMainContain.close .zones2 .playlistZoneBox{
		width:270px;
		margin-right:3px;
		}



}



















@media (max-width:650px){


	.tableListHeaderSearchContain{
		float:none;
		width: calc(100% - 148px);
    	max-width: 450px;
		}


	.tableListHeaderFilterButton{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:0px;
		}


	.tableListHeaderSortBox{
		margin-top:6px;
		width:calc(50% - 3px);
		margin-left:6px;
		}


	.noActionButtons .tableListHeaderSearchContain {
	    width: calc(100%);
		}


}






















@media (max-width:600px){


	.printDownload.save .tableListHeaderSearchContain {
    	width: calc(100% - 80px) !important;
		}

	.printDownload.save .tableHeaderActionItemsBox {
		width:100%;
	    position: relative;
	    margin-top: 6px;
	    float: left;
		}

	.printDownload.save .tableListHeaderButton{
		width:calc(50% - 3px);
		margin:0px;
		}

	.printDownload.save .tableListHeaderButtonSave{
		margin-left:6px;
		}

	.printDownload.save .tableHeaderDownloadPrintBox{
		position:absolute;
		top:0;
		right:0px;
		}

	.serviceBrandList {
	    columns: 2;
	    -webkit-columns: 2;
	    -moz-columns: 2;
		}

	.serviceBrandBox {
	    padding: 25px;
		}

	.serviceBrandBoxHeader {
	    margin-bottom: 25px;
		}


	.dashboardStatusChooseContain {
    	width: calc(100% - 12px);
    	margin-top: 12px;
		}

	.asideOpen .dashboardStatusChooseContain {
    	width: calc(100% - 12px);
    	margin-top: 12px;
		}


}















@media (max-width:530px){



	.theTable th, .theTable td{
		font-size:10px;
		}


}



















@media (max-width:500px){


	.centerContainBox331 {
	    max-width: unset;
	    margin-top: 25px;
		}

	#accountName{
		display:none;
		}


	.save .tableListHeaderSearchContain {
    	width: calc(100%) !important;
		}

	.save .tableHeaderActionItemsBox {
		width:100%;
	    position: relative;
	    margin-top: 6px;
	    float: left;
		}

	.save .tableListHeaderButton{
		width:calc(50% - 3px);
		margin:0px;
		}

	.save .tableListHeaderButtonSave{
		margin-left:6px;
		}

	.tableListCheckBox input{
	    cursor: pointer;
	    width: 15px;
	    height: 15px;
	    border-radius:2px;
	    -webkit-border-radius:0; 
    	border-radius:0;
    	margin-top:5px;
		}


	.filterOptionCheckList li input {
	    cursor: pointer;
	    width: 15px;
	    height: 15px;
	    float: left;
	    -webkit-border-radius:0; 
    	border-radius:0;
		}

	.filterOptionCheckList li {
    	height: 20px;
		}

	.filterOptionCheckList label {
	    line-height: 16px;
		}


	.quickTaskBox{
		width:calc(50% - 15px) !important;
		}




}



















@media (max-width:450px){


	.tableListHeaderContain{
		margin-bottom:15px;
		}


	.tableAvatorBox {
	    width: 40px;
	    padding-right: 0px;
		}

	.serviceBrandBoxHeaderAddButton {
	    background: #3AB54A;
	    position: relative;
	    width: 100%;
		}

	.serviceBrandBoxHeaderText {
	    font-size: 16px;
	    width: 100%;
	    margin-bottom: 20px;
		}

	.serviceBrandLiCheckBox {
	    width: 16px;
	    height: 16px;
		}

	.serviceBrandList {
	    columns: 1;
	    -webkit-columns: 1;
	    -moz-columns: 1;
	    width: max-content;
	    margin-left: auto;
	    margin-right: auto;
		}

	.serviceBrandLiText {
	    float: left;
	    margin-top: 0px;
	    margin-left: 8px;
	    line-height: 18px;
		}

	.formCell.quarter {
    	width: calc(50% + 1px);
		}

	.formCell.threeQuarters {
	    width: calc(50% + 1px);
		}


	.dashboardHeader {
	    height: 114px;
		}

	.asideOpen .dashboardHeader {
	    height: 114px;
		}

	.dashboardTabControl {
	    position: relative;
	    z-index: 1;
	    padding-top: 10px;
	    padding-left: 10px;
	    width: max-content;
	    float: left;
	    margin-top: 35px;
		}

	.dashboardProductSelect{
		float:left;
		margin-top:45px;
		}


	.dashboardHeaderButton {
    	width: calc(100% - 20px);
    	margin-top:10px;
    	margin-left: auto !important;
    	margin-right: auto !important;
		}


	.asideOpen .dashboardStatusChooseContain {
	    margin-left:10px;
	    width: calc(100% - 17px);
		}

	.dashboardStatusChooseContain {
	    margin-left:10px;
	    width: calc(100% - 17px);
		}


}


