/*
 * *** You can say something about your file if you need it!
 * Template Name
 * Description
 * Vertion
 * Copyright
 * Author
 * Last Modified Date
 *
 */
/*-------------------------*/
/* $Catalog
---------------------------*/
/**
 * Catalog
 * Button
 * Navigation bar
 * Jumbotron
 * Thumbnail
 * Footer
**/

/*-------------------------*/
/* $Button
---------------------------*/
button:focus {
    outline: none!important;
}
.btn{
	/* structure */
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin: 0;
	height: 33px;
	line-height: 33px;
	padding: 0 8px;
	min-width: 64px;
    box-sizing: border-box;
	/* style */
	font-size: 13px;
	text-align: center;
	letter-spacing: 0;
	/*text-transform: uppercase;*/
	text-decoration: none;
	color: #353630;
	/*background: linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
	background: -moz-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
	background: -webkit-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
	background: -o-linear-gradient(90deg, #F2F4F7 0%, #fff 100%); */
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f2f4f7+100 */
	background: #ffffff; /* Old browsers */
	 /*background: -moz-linear-gradient(top, #ffffff 0%, #f2f4f7 100%);  /*FF3.6-15 */
	 /*background: -webkit-linear-gradient(top, #ffffff 0%,#f2f4f7 100%); /* Chrome10-25,Safari5.1-6 */
	 /*background: linear-gradient(to bottom, #ffffff 0%,#f2f4f7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f4f7',GradientType=0 ); /* IE6-9 */

	border: 1px solid #c5c5c5;
	border-radius: 3px;
	outline: none;
	/* interact */
	cursor: pointer;
	overflow: hidden;
	-webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-user-drag: none;
    transition: background 0.3s;
}
/* .btn--hover,
.btn:hover{
	background: #dfdfdf;
	border: 1px solid #D2D2D2;
}
.btn--hover,
.btn:active{
	background: #cacbcd!important;
	border: 1px solid #D2D2D2!important;
} */
.btn--disabled,
.btn--disabled:hover,
.btn--disabled:active,
.btn--disabled:focus{
	color: #bfbfbf;
	pointer-events: none;
	background: #E9EDF1;
	border: 1px solid #e4e4e4;
}
.btn.btn--primary,
.btn.btn--secondary,
.btn.btn--positive,
.btn.btn--negative{
	color: #fff;
}
.btn.btn--primary{
	background: #09C199;
	border: 1px solid #08B791;
}
.btn.btn--primary.btn--hover,
.btn.btn--primary:hover{
	background: #04A884;
}
.btn.btn--secondary{
	background: #EF5568;
	border: 1px solid #e55264;
}
.btn.btn--secondary.btn--hover,
.btn.btn--secondary:hover{
	background: #D33E50;
}
.btn.btn--positive{
	background: #3eb5ac;
}
.btn.btn--positive.btn--hover,
.btn.btn--positive:hover{
	background: #38a59d;
}
.btn.btn--negative{
	background: #f84545;
}
.btn.btn--negative.btn--hover,
.btn.btn--negative:hover{
	background: #db3d3d;
}
/* Size */
.btn.btn--lg{
	font-size: 16px;
	line-height: 42px;
	height: 42px;
	font-weight: 400;
}
.btn.btn--md{
	font-size: 14px;
	line-height: 36px;
	height: 36px;
}
.btn.btn--sm{
	font-size: 12px;
	line-height: 28px;
	height: 30px;
	border-radius: 2px;
}
.btn.btn--xs{
	font-size: 12px;
	line-height: 24px;
	height: 24px;
	border-radius: 2px;
}

/* group */
.btn-group .btn{
	/*margin-left: 8px;*/
	margin-right: 8px;
	margin-bottom: 16px;
}
.btn-group--center{
	text-align: center;
}
.btn-group--right{
	text-align: right;
}
.btn-group--right .btn{
	margin-right: 0;
	margin-left: 16px;
}

/* Form */
.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="url"],
.form input[type="date"],
.form input[type="month"],
.form input[type="time"],
.form input[type="datetime"],
.form input[type="datetime-local"],
.form input[type="week"],
.form input[type="number"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="color"],
.form select,
.form textarea {
    padding: 7px 7px;
    display: inline-block;
    border: 1px solid #d8d8d8;
    background-color: #fff;
    border-radius: 3px;
    vertical-align: middle;
    box-sizing: border-box;
    /*line-height: 12px;*/
    width: 100%;
    color: #666;
    height: 32px;
    font-size: 13px;
}
mat-form-field.readonly,
.form input[readonly]{
  cursor: text;
  background-color: #fff!important;
  border: none!important;
  text-align: right!important;
  padding: 0!important;
}


.input--xs input[type="text"],
.input--xs input[type="password"],
.input--xs input[type="email"],
.input--xs input[type="url"],
.input--xs input[type="date"],
.input--xs input[type="month"],
.input--xs input[type="time"],
.input--xs input[type="datetime"],
.input--xs input[type="datetime-local"],
.input--xs input[type="week"],
.input--xs input[type="number"],
.input--xs input[type="search"],
.input--xs input[type="tel"],
.input--xs input[type="color"],
.form input[type="file"],
.input--xs select,
.input--xs textarea{
	padding: 2px 7px;
	height: 32px;
	width: 50px;
}
.input--sm input[type="text"],
.input--sm input[type="password"],
.input--sm input[type="email"],
.input--sm input[type="url"],
.input--sm input[type="date"],
.input--sm input[type="month"],
.input--sm input[type="time"],
.input--sm input[type="datetime"],
.input--sm input[type="datetime-local"],
.input--sm input[type="week"],
.input--sm input[type="number"],
.input--sm input[type="search"],
.input--sm input[type="tel"],
.input--sm input[type="color"],
.form input[type="file"],
.input--sm select,
.input--sm textarea{
	padding: 4px 7px;
	height: 32px;
	width: 134px;
}
.input--md input[type="text"],
.input--md input[type="password"],
.input--md input[type="email"],
.input--md input[type="url"],
.input--md input[type="date"],
.input--md input[type="month"],
.input--md input[type="time"],
.input--md input[type="datetime"],
.input--md input[type="datetime-local"],
.input--md input[type="week"],
.input--md input[type="number"],
.input--md input[type="search"],
.input--md input[type="tel"],
.input--md input[type="color"],
.form input[type="file"],
.input--md select,
.input--md textarea{
	padding: 4px 7px;
	height: 32px;
	width: 200px;
}
.input--lg input[type="text"],
.input--lg input[type="password"],
.input--lg input[type="email"],
.input--lg input[type="url"],
.input--lg input[type="date"],
.input--lg input[type="month"],
.input--lg input[type="time"],
.input--lg input[type="datetime"],
.input--lg input[type="datetime-local"],
.input--lg input[type="week"],
.input--lg input[type="number"],
.input--lg input[type="search"],
.input--lg input[type="tel"],
.input--lg input[type="color"],
.form input[type="file"],
.input--lg select,
.input--lg textarea{
	padding: 4px 7px;
	height: 32px;
	width: 300px;
}
.input--xg input[type="text"],
.input--xg input[type="password"],
.input--xg input[type="email"],
.input--xg input[type="url"],
.input--xg input[type="date"],
.input--xg input[type="month"],
.input--xg input[type="time"],
.input--xg input[type="datetime"],
.input--xg input[type="datetime-local"],
.input--xg input[type="week"],
.input--xg input[type="number"],
.input--xg input[type="search"],
.input--xg input[type="tel"],
.input--xg input[type="color"],
.form input[type="file"],
.input--xg select,
.input--xg textarea{
	padding: 4px 7px;
	height: 32px;
	width: 400px;
}
.form input[type="text"]:focus,
.form input[type="password"]:focus,
.form input[type="email"]:focus,
.form input[type="url"]:focus,
.form input[type="date"]:focus,
.form input[type="month"]:focus,
.form input[type="time"]:focus,
.form input[type="datetime"]:focus,
.form input[type="datetime-local"]:focus,
.form input[type="week"]:focus,
.form input[type="number"]:focus,
.form input[type="search"]:focus,
.form input[type="tel"]:focus,
.form input[type="color"]:focus,
.form select:focus,
.form textarea:focus {
    outline: 0;
    border-color: #999;
}
.form input.succeed{
	border-color: #09C199;
}
.form input.error{
	border-color: #EF5568;
}
.form input.disable{
	border-color: #e7e7e7;
	cursor: default;
}
.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.form input:-moz-placeholder,
.form textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form input.disable::-webkit-input-placeholder,
.form textarea.disable::-webkit-input-placeholder {
  color: #e7e7e7;
  opacity: 1;
}
.form input.disable:-moz-placeholder,
.form textarea.disable:-moz-placeholder {
  color: #e7e7e7;
  opacity: 1;
}
.form input:focus::-webkit-input-placeholder{
    color: #6D6D6D;
}
.form input:focus:-moz-placeholder {
    color: #6D6D6D;
    opacity: 1;
}
.form input:focus::-moz-placeholder {
    color: #6D6D6D;
    opacity: 1;
}
.form input:focus:-ms-input-placeholder{
	color: #6D6D6D;
}
.form button[type="login"]:focus{
	outline: 0;
}

/* Table th width */
.rwd-table th.input--xs{
    width: 10%;
}
.rwd-table th.input--lg{
    width: 25%;
}
.table-theme .input--sm input[type="text"],
.table-theme .input--sm input[type="password"],
.table-theme .input--sm input[type="email"],
.table-theme .input--sm input[type="url"],
.table-theme .input--sm input[type="date"],
.table-theme .input--sm input[type="month"],
.table-theme .input--sm input[type="time"],
.table-theme .input--sm input[type="datetime"],
.table-theme .input--sm input[type="datetime-local"],
.table-theme .input--sm input[type="week"],
.table-theme .input--sm input[type="number"],
.table-theme .input--sm input[type="search"],
.table-theme .input--sm input[type="tel"],
.table-theme .input--sm input[type="color"],
.table-theme .input--sm select,
.table-theme .input--sm textarea{
	width: 100%;
}
.table-theme .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}


/* The radio */
.radio {
    display: inline-block;
    position: relative;
    /*padding-left: 20px;
    margin:8px 0;*/
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio input {
    /*position: absolute;*/
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    /*top: 3px;*/
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border-radius: 50%;
    border:1px solid #DCDDDF;
    top: 50%;
	transform: translateY(-50%);
}
.radio-disable .checkmark{
	background-color: #F2F4F7;
	border: 1px solid #e7e7e7;
	cursor: default;
}
label.radio-disable{
	cursor: default;
}
/* On mouse-over, add a grey background color */
.radio:hover input ~ .checkmark {
    background-color: #eee;
}
.radio-disable:hover input ~ .checkmark {
	background-color: #F2F4F7;
}
/* When the radio button is checked, add a green background */
.radio input:checked ~ .checkmark {
    background: linear-gradient(180deg, #09C199 0%, #08B791 100%);
    border:0px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio .checkmark:after {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}
input[type="checkbox"] {
    line-height: normal;
    box-sizing: border-box;
	overflow: visible;
	margin-right: 8px;
	opacity: 0;
}

label{
  /*position: relative;*/
  cursor: pointer;
  margin-bottom: 0;
}
label input{
  cursor: pointer;
}
input:checked + .show-box {
    background: #09C199;
    border:1px solid #08B791;
  }
.show-box {
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid #bbb;
    background: white;
}
.checkbox-disable .show-box{
	background-color: #F2F4F7;
	border: 1px solid #e7e7e7;
	cursor: default;
}
label.checkbox-disable{
	cursor: default;
}
.checkbox-disable .show-box:before{
	opacity: 0;
}
.show-box:before {
      content: '';
      position: absolute;
      top: 1px;
      left: 4px;
      width: 5px;
      height: 7px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #09C199;
}

input:focus + .slider {
  box-shadow: 0 0 1px #09C199;
}

input:checked + .slider:before {
  /* -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px); */
  color: #b0b0b0;
  margin-right: 10px;
  vertical-align: middle;
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}


/*-------------------------*/
/* $Navigation bar
---------------------------*/
/* logo */
.logo__image{
	display: inline-block;
    width: auto;
    height: auto;
}
.navbar__logo{
	flex: 1;
    /*margin-left: 20px;*/
    display: inline-flex;
}
.logo__image img {
	height: 38px;
	vertical-align: middle;
	display: inline;
}
.logo__image-span{
	width: 300px;
}
.dropdown-toggle::after{
	display: none;
}
@media (max-width: 1024px){
	.navbar__logo .logo__image{
		display: inline;
		height: 48px;
		margin: 0;
		z-index:99;
	}
	.navbar__logo{
		margin: 0 auto;
		max-height: 50px;
		position: absolute;
		z-index: 3;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		display: inline-block;
	}
	.navbar__logo .logo__image img{
		height: 24px;
	}
	.nav.navbar__nav{
		/*float: none;*/
		/*position: absolute;*/
		/*top:0;*/
		width: 100%;
		line-height: 48px;
	}
	.more{
		right: 0;
	    position: absolute;
	    top: 0;
	    float: right;
	}
	.navbar__logo .productname{
		padding-left:8px;
	}
	.logo__image-span{
		width:auto;
	}
	.left-head{
		display: none!important;
	}
}
/* menu */
.menu{
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu.menu--horizontal > li{
	float: left;
	border-left: 1px solid #E7E7E7;
	line-height: 60px;
	box-sizing: border-box;
}
.menu.menu--horizontal > li.device-name{
	border-left: 0px;
	padding: 0 30px;
	height: 60px;
	text-align: right;
}
.menu.menu--horizontal > li.device-name > div{
	display: inline-block;
	line-height: 22px;
	vertical-align: middle;
}
.menu.menu--horizontal > li.device-name > div span{
	color: #898888;
}
.menu__item{
	color: #4A4A4A;
	display: block;
	transition: all 0.2s;
	font-size: 13px;
}
.menu.menu--horizontal .menu__item{
	/*line-height: 24px;*/
	padding: 0 30px;
}
.navbar__nav .menu__item{
	color: #4A4A4A;
}
.navbar__nav .menu__item:hover{
	/*color: #f95c3c;*/
}
.navbar__nav .menu__item i {
	color: #C0C6D2;
	font-size: 20px;
	vertical-align: middle;
}
.navbar__nav .menu__item .dropdown-icon{
	font-size:14px;
	padding-left: 14px;
}
/* navbar */
.navbar{
	background-color: #fff;
	/*min-height: 66px;*/
	border:0;
	border-bottom: 1px solid #E7E7E7;
	margin-bottom: 0;
	position: fixed;
    width:100%;
    top:0;
    border-radius: 0;
    padding:0;
    z-index: 999;
}

.navbar__nav{
	float: right;
}

.nice-nav.open {
    margin-left: -300px;
    display: block;
}
.productname {
    display: inline-block;
    font-weight: bold;
    color: #4A4A4A;
    padding-left: 16px;
    font-family: Avenir Next;
}
/* left-menu */
.left-side{
	background-color: #fff;
	padding: 24px 0;
	width: 300px;
	height: calc(100vh - 66px);
	margin-top: 66px;
    top: 0;
}
.left-side .focus{
	color: #EF5568;
}
.left-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #fff;
	width:inherit;
	color: #3F3F3F;
	font-size: 1.1rem;
	line-height: 42px;
	vertical-align: middle;
}
.left-menu i {
	font-size: 20px;
	line-height: 42px;
	vertical-align: inherit;
	padding-right: 10px;
}
.left-menu li {
	padding: 0 20px;
	vertical-align: sub;
}
.left-menu .angle {
	float: right;
	line-height: 40px;
    font-size: 12px;
}
/* menu-toggle */
.menu-toggle{
	width: 48px;
	height: 48px;
	padding: 0 8px;
	text-align: center;
	display: none;
}
@media (max-width: 1024px){
	.menu-toggle{
		display: block;
	}
}
.menu-toggle .icon{
	color: #f4f4f4;
	line-height: 48px;
}
.menu-toggle i{
	font-size: 18px;
	line-height: 48px;
	color: #BFC5D1;
}

/* responsive-popup */
@media (max-width: 1024px){
	.responsive-popup{
		position: fixed;
		top: 0;
		/*left: 0;*/
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: 1000;
		padding-top: 56px;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
    }
    .nice-nav.open {
        margin-left: 0;
        visibility: visible;
        opacity: 1;
    }
	#popup-menu:target,#sidebar:target{
		opacity: 1;
		visibility: visible;
	}
	.menu.responsive-popup li{
		float: none;
		line-height: 46px;
		border-left: 0px ;
	}
	.menu.responsive-popup .menu__item{
		text-align: left;
	}
	.responsive-popup-close{
		display: block;
		width: 48px;
		height: 48px;
		padding: 0 8px;
		text-align: center;
		position: absolute;
		top: 0;
		right: 0;
		vertical-align: middle;
    	line-height: 48px;
	}
	.responsive-popup-close .icon{
		color: #f4f4f4;
		line-height: 48px;
    }
    .responsive-popup-close:hover, .responsive-popup-close:focus {
        color: initial;
    }
	.left-side {
		padding: 0;
	}
}
@media (min-width: 1025px){
	.responsive-popup-close {
		display: none;
		visibility: hidden;
	}
}
/* Arrow Box style */
.arrow_box,.arrow_box2,.arrow_box3{
	color: #fff;
	/*font-size:11px; -webkit-transform:scale(0.91);
	font-weight: 100;*/
	text-align: center;
	box-sizing: border-box;
	padding: 4px 3px 2px 3px;
}

.arrow_box,.arrow_box2,.arrow_box3 {
	min-width: 95px;
	max-width: 105px;
    min-height: 24px;
    border-radius: 3px;
	position: relative;
	background: #4A90E2;
}
.arrow_box:after,.arrow_box2:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(74, 144, 226, 0);
	border-top-color: #4A90E2;
	border-width: 4px;
	margin-left: -4px;
}
.arrow_box2 {
	background: #00CA9D;
}
.arrow_box2:before,.arrow_box3:before {
	top: -1%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(74, 144, 226, 0);
	border-top-color: #fff;
	border-width: 4px;
	margin-left: -4px;
}
.arrow_box2:after {
	border-top-color: #00CA9D;
}


/*-------------------------*/
/* $Select
---------------------------*/

/* Remove, change to fit your needs */
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);

.sod_select,
.sod_select *
    {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
    }

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select
    {
        display: inline-block;
        position: relative;
        line-height: 1;

        min-width: 120px;
        padding:8px 25px 8px 16px;
        background-color: #ffffff;
        border: 1px solid #c5c5c5;
        border-radius: 2px;
        color: #474747;
        font-size: 13px;
        font-weight: 400;
        text-align: left;
        text-transform: uppercase;
        outline: 0;
        outline-offset: -2px; /* Opera */
        cursor: default;
    }
.select_sm .sod_label,.select_sm .sod_list {
	/*padding:10px 15px  !important;*/
}
    /* Up/Down arrows */
    @font-face {
	  font-family: 'icomoon';
	  src:  url('../fonts/icomoon.eot?jggiy3');
	  src:  url('../fonts/icomoon.eot?jggiy3#iefix') format('embedded-opentype'),
	  url('../fonts/icomoon.ttf?jggiy3') format('truetype'),
	  url('../fonts/icomoon.woff?jggiy3') format('woff'),
	  url('../fonts/icomoon.svg?jggiy3#icomoon') format('svg');
	  font-weight: normal;
	  font-style: normal;
	}
	[class^="sod_"], [class*=" sod_"] {
	  /* use !important to prevent issues with browser extensions that change fonts */

	  speak: none;
	  font-style: normal;
	  font-weight: normal;
	  font-variant: normal;
	  text-transform: none;
	  line-height: 1;

	  /* Better Font Rendering =========== */
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	}
    .sod_select:after
        {
            /*content: "\25B2";*/
            font-family: 'icomoon' !important;
            content: "\e926";
            position: absolute;
            right: 8px;
            top: 12px;
            /*font-size: 8px;
            -webkit-transform:scale(0.75);*/
        }

        /* Down arrow */
        .sod_select:after
            {   font-family: 'icomoon' !important;
            	/*content: "\25BC";*/
                content: "\e923";
                top: auto;
                bottom: 7px;
            }

    /* Change the border color on hover, focus and when open */
    .sod_select:hover,
    .sod_select.open,
    .sod_select.focus
        {
            border-color: #999;
        }

        .sod_select.focus { box-shadow: 0 0 2px rgba(0,0,0,.1); }

        .sod_select.open
            {
                border-radius: 3px 3px 0 0;
                color: #919191;
                box-shadow: 1px 2px 5px rgba(0,0,0,.1);
            }

            .sod_select.open.above
                {
                    border-radius: 0 0 3px 3px;
                    box-shadow: 1px -2px 5px rgba(0,0,0,.1);
                }
	.sod_select:hover {
		cursor: pointer;
	}
    /* When the entire SoD is disabled, go crazy! */
    .sod_select.disabled,
    .sod_select.disabled:hover
        {
            opacity: .8;
            color: #b2b2b2;
            cursor: not-allowed;
        }

    /* The "label", or whatever we should call it. Keep the first three lines for truncating. */
    .sod_select .sod_label
        {
            /*overflow: hidden;*/
            white-space: nowrap;
            text-overflow: ellipsis;

            /*padding-right: 25px;*/
        }

        .sod_select .sod_prefix { /* Use this if you're using a prefix and want to style it */ }
        .sod_select .sod_placeholder { /* Use this if you're using a placeholder and want to style it */ }



    /* Options list wrapper */
    .sod_select .sod_list
        {
            position: absolute;
            top: 100%;
            left: 0;
            display: none;
            height: auto;
            min-width:inherit;
            margin: 0 0 0 -1px;
            background: #ffffff;
            border: 1px solid #999;
            /*border-top: none;*/
            border-radius: 0 0 3px 3px;
            box-shadow: 1px 2px 5px rgba(0,0,0,.1);
            z-index: 3;
            width: max-content;
        }

        /* The "divider" shown above the list */
        .sod_select .sod_list:before
            {
              /*  content: "";
                position: absolute;
                left: 10px;
                right: 10px;
                height: 1px;
                top: -1px;
                background: #dbdbdb;*/
            }

        /* Shows the option list (don't edit) */
        .sod_select.open .sod_list {
        	display: block;
        	overflow: auto;
    		max-height: 300px;
    		right: -1px;
    		left: unset;
        }

        /* Don't display the options when  */
        .sod_select.disabled.open .sod_list { display: none;  }

        /* When the option list is displayed above the SoD */
        .sod_select.above .sod_list
            {
                top: auto;
                bottom: 100%;
                border-radius: 3px 3px 0 0;
                /*border-top: 1px solid #dbdbdb;*/
                border-bottom: none;
                box-shadow: 1px -2px 5px rgba(0,0,0,.1);
            }

            .sod_select.above .sod_list:before
                {
                    content: "";
                    position: absolute;
                    left: 10px;
                    right: 10px;
                    height: 1px;
                    bottom: -1px;
                    top: auto;
                    /*background: #dbdbdb;*/
                }


    /* Options list container */
    .sod_select .sod_list ul
        {
            overflow-y: auto;
            padding: 0;
            margin: 0;
            border-radius: 3px;
            display: grid;
        }

        /* All the options. Keep the first three lines for truncating... */
        .sod_select .sod_list li
            {
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;

                position: relative;
                padding: 12px 15px;
                list-style-type: none;
                color: #676767;
                text-align: left;
            }

            .sod_select .sod_list li:first-child {
            	border-top: none;
            }

            /* Optgroups */
            .sod_select .sod_list .optgroup,
            .sod_select .sod_list .optgroup.disabled
                {
                    /*background: inherit;*/
                    /*font-style: italic;*/
    				background: #f5f5f5;
				    color: #cccccc;
				    font-size: 10px;
				    font-weight: bold;
				    padding: 5px 15px;
				    border-top: 1px solid #e2e2e2;
                }

                /* Children of an optgroup */
                .sod_select .sod_list .groupchild { padding-left: 30px; }

            /* Disabled option */
            .sod_select .sod_list .disabled
                {
                    background: inherit;
                    color: #cccccc;
                }

            /* Hover state for options, also used when a user uses his/hers up/down keys */
            .sod_select .sod_list .active
                {
                    background: #fafafa;
                    color: #00A4ED!important;
                }

            /*Make room for the check mark */
            .sod_select .sod_list .selected
                {
                    padding-right: 30px;
                    font-weight: 700;
                    text-align: left;
                }

                /* Displays a check mark for the selected option */
                .sod_select .sod_list .selected:before
                    {
                        content: "";
                        position: absolute;
                        right: 15px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                                transform: translateY(-50%);
                        display: inline-block;
                        color: #808080;
                        height: 9px;
                        width: 10px;
                        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
                    }

                /* Add a .no_highlight class to you SoD to hide the check mark */
                .sod_select.no_highlight .sod_list .selected:before { display: none; }

            .sod_select .sod_list .link { /* If data-link is set on a specific option */ }
            .sod_select .sod_list .linkexternal { /* If data-link-external is set on a specific option */ }


    /* Hide native select */
    .sod_select select { display: none !important; }

        /* The native select in touch mode. Keep this first line. Sorry, keep everything. */
        .sod_select.touch select
            {
                -webkit-appearance: menulist-button;

                position: absolute;
                top: 0;
                left: 0;
                display: block !important;
                height: 100%;
                width: 100%;
                opacity: 0;
                z-index: 1;
            }

.dropdown-menu>li>a{
    line-height: 2rem;
    color: #333;
    padding: 7px 20px;
    display: block;
}
.dropdown-item {
    font-weight: unset;
}
.admin-dropdown{
	left:auto;
    right: 0;
    width: max-content;
    box-shadow: rgb(168 190 210 / 0.2) 0px 5px 4px, rgb(168 190 210 / 0.2) 0px 0px 4px;
}
.admin-dropdown .notifi {
    display: none;
}
.admin-dropdown i {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-right: 10px;
    vertical-align: middle;
}
.admin-dropdown li{
    line-height: 30px;
    padding: 0;
}
.admin-dropdown li:hover {
  background: #e0eaf5;
}
.sod_list{
	line-height: 1rem;
}
.admin-dropdown li .select{
	padding: 5px 20px;

}
.admin-dropdown li .select li{
	line-height: 1rem;
}
.admin-dropdown li .sod_select .sod_list {
		width: calc(100% + 2px);
	}
.sidebar-wrapper .responsive-popup-close{
	color: #fff;
}
@media (max-width: 1024px){
	.menu__item.nitifi{
		display: none;
	}
	.menu.responsive-popup li .admin-dropdown .notifi {
	    display: block;
	}
	.menu.responsive-popup li {
		width: 100%;
	}
	.nav-toolitem .admin-dropdown li a {
	    line-height: 48px;
        padding: 0 20px;
        margin-top: 10px;
	}
	.admin-dropdown .sod_select {
		width: 100%;
	}
	.admin-dropdown li .select{
		padding: 5px 20px;
	}

	.nav-toolitem .admin-dropdown {
	    display: block;
	    left: 0;
	    border: 0;
	    box-shadow: none;
	    padding: 0;
	    margin: 0;
	    width: 100%;
	}
	.notifi .badge {
	    position: relative;
	    float: right;
	    margin-top: 4px;
	}
	.nav-toolitem .dropdown-icon {
	    display: none;
	}
	.menu__item.nitifi {
	    display: none;
	}
}
.notifi .badge {
    background-color: #EF5568;
    display: inline-block;
    min-width: 8px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
    /*position: absolute;*/
    top: 12px;
    padding: 2px 5px;
    right: 18px;
    font-weight: 400;
    color:#fff!important;
}
.SumoSelect .sod_select {
	display: none;
}
.pagination>li>a, .pagination>li>span{
	border: none;
	float: left;
	margin-left: -1px;
}
.page-item.disabled .page-link{
    background-color: #ececec;
    color: lightgray;
}

.sidebar-wrapper .sidebar-menu ul li a span.label{
	display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
        line-height: 1;
}

.light-theme .sidebar-wrapper .sidebar-menu .badge{
	display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}
.btn-group input[type=radio] {
    display: none!important;
}
.light-theme .sidebar-wrapper .sidebar-search input.search-menu, .light-theme .sidebar-wrapper .sidebar-search .input-group-addon {
    border-color: transparent;
    box-shadow: none;
}
.light-theme .sidebar-wrapper .sidebar-search input.search-menu, .light-theme .sidebar-wrapper .sidebar-search .input-group-addon {
    background: #48505A;
    height: 36px;
}
.light-theme .sidebar-wrapper .sidebar-search .input-group-addon {
    background: #48505A;
    padding: 8px;
    border-radius: 0 .25rem .25rem 0;
}
.light-theme .sidebar-wrapper .sidebar-search input.search-menu::placeholder {
    color: rgb(255 255 255 / 0.6) !important;
}

.chiller-theme .sidebar-wrapper .sidebar-header, .chiller-theme .sidebar-wrapper .sidebar-search, .chiller-theme .sidebar-wrapper .sidebar-menu{
	border-bottom: 0;
}
.SumoSelect>.CaptionCont>span{
	font-size: .9rem;
}

.form-lable {
    min-width: 240px;
    display: inline-block;
    margin-bottom: 0;
    color: #898888;
    vertical-align: top;
    padding-left: 16px;
    font-size: 14px;
}
.form-lable-right {
    /* width: calc(100% - 240px); */
    display: inline-block;
}

.form .select_sm .sod_select {
    margin-left: 0px;
    display: inline-block;
    padding: 8px 28px 8px 8px;
    vertical-align: middle;
}

.bottom-btn-block{
	border-top:#E7E7E7 1px solid;
	/* text-align: right; */
	padding: 16px!important;
    display: flex;
    /* justify-content: space-between; */
}
method-form-fillform-editor .bottom-btn-block, app-method-multiple-table-view-editor .bottom-btn-block {
    justify-content: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}
method-form-fillform-editor .full-screen .bottom-btn-block{
    justify-content: start;
}
@media (min-width: 415px){
	.bottom-btn-block .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
	.bottom-btn-block .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,
	.bottom-btn-block .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,
	.bottom-btn-block .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
	    border-radius: 3px;
	    width: auto;
	}
	.bottom-btn-block .btn-group-justified>.btn, .btn-group-justified>.btn-group{
		display: inline-block;
	}
}
@media (max-width: 415px){
	.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}
	.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}
	.btn-back{
		display: table-cell;
	}
	.btn-group-justified>.btn-group .btn {
	    width: 100%;
	}
	.btn-back .btn{
		margin-right: 0;
		margin-left: 0;
	}
}
.bottom-btn-block .btn-group .btn{
	color: #353630;
    background: linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
    background: -moz-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
    background: -webkit-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
    background: -o-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
    border: 1px solid #EBEBEB;
}
.bottom-btn-block .btn--hover,
.bottom-btn-block .btn:hover{
	background: #dfdfdf;
	border: 1px solid #D2D2D2;
}
.bottom-btn-block .btn.btn--primary {
	color: #fff;
    background: #09C199;
    border: 1px solid #08B791;
}
.bottom-btn-block .btn.btn--primary.btn--hover,
.bottom-btn-block .btn.btn--primary:hover{
	background: #04A884;
}
.bottom-area {
    position: fixed;
    width: calc(100% - 332px);
    height: 66px;
    bottom: 16px;
    left: 324px;
    margin: 0;
    /*background: #fff;*/

    padding: 0;
    z-index:3;
}

.card{
    height: calc(100vh - 148px);
}
.card.nav-card{
	height: calc(100vh - 210px);
}
@media (max-width: 1024px){
    .bottom-area {
        width: calc(100% - 32px);
        left: 16px;
    }
    .card{
        height: calc(100vh - 148px);
    }
    .card.nav-card{
    	height: calc(100vh - 188px);
    }
}
.SumoSelect{
	height: 30px;
}
.field-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.full-screen .field-wrap {
  max-width: 411px;
  position: absolute;
  top: -16px;
  white-space: nowrap;
}
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    background: #EEEEEE;
    width: 100%;
    border-radius: 3px;
    vertical-align: bottom;
    margin: 0;
    height: 6px;
    cursor: pointer;
    transition: all ease-in 0.25s;
}


input[type="range"] {
    -webkit-appearance: none;
    overflow: hidden;
    width: 172px;
    outline: none;
}
.page-wrapper.toggled .sidebar-wrapper{
	font-size: 1rem;
}
.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
}
.inputfile-6 + label {
    border: 1px solid #ccc;
	background-color:#fff;
    padding: 0;
    height: 36px;
    border-radius: 2px;
}
.input-sm.inputfile-6 + label {
    height: 30px;
    line-height: 30px;
}
.inputfile-6 + label span, .inputfile-6 + label strong {
    padding: 0.6rem 1.25rem;
}
.inputfile-6 + label span {
    width: 170px;
    min-height: 2em;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
}
.inputfile-6 + label strong {
    height: 100%;
    color: #3f3f3f;
background: linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
background: -moz-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
background: -webkit-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
background: -o-linear-gradient(90deg, #F2F4F7 0%, #fff 100%);
border-left: 1px solid #EBEBEB;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
}
.input-sm.inputfile-6 + label span, .input-sm.inputfile-6 + label strong {
    padding: 3px 1.25rem;
    line-height: 1.8em;
}
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.input-sm.inputfile-6 + label span {
    min-height: 1.6em;
}

.left-head{
	width:64px;
	display: flex;
}
.left-head i {
	margin-left: 18px;
	font-size: 18px;
	color: #BFC5D1;
}
.toggle-nav{
	display: inline-flex;
	width: 64px;
	height: 60px;
	align-items: center;
}

.page-content{
	transition: all 0.4s ease-in-out 0s;
}
.page-content.left{
	padding-left:0!important;
}
.tab-content-bottom-area.toggle-left {
    width: calc(100% - 35px);
    left: 19px;
}
.menu.menu--horizontal > li a div {
    line-height: 22px;
    display: inline-block;
    vertical-align: middle;
    /*text-align: right;*/
}
.menu.menu--horizontal > li a span{
	display: block;
}
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-block;
    background-size: cover;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    margin: 0 16px 0 0;
    background-color: #E0EAF5;
    text-align: center;
    font-size: 20px;
    line-height: 44px;
}
/* .scrollbar {
	float: left;
	overflow-y: scroll;
} */

.scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #8a93a0;
    background: #8a93a0;
}

.scrollbar::-webkit-scrollbar {
	width: 6px;
	background-color: #8a93a0;
    background: #8a93a0;
}

.scrollbar::-webkit-scrollbar-thumb {
	background-color: #999;
    background: #8a93a0;
}


.bg-fadeOut {
	width: 100%;
	height: 100%;
	background-color: #fffbeb;
    border-radius: 3px;
    padding: 0 16px;
    margin: 0 -16px;
    position: absolute;
    animation-delay: 3s;
    -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}


/*-------------------------*/
/* $Jumbotron
---------------------------*/



/*-------------------------*/
/* $Thumbnail
---------------------------*/
/* imgbox */



/*-------------------------*/
/* $Footer
---------------------------*/


.rwd-table td .show-box {
  position: absolute;
  /* top: 0!important; */
  left: 50%;
}

.wizard-modal label.form-lable {
    min-width: 120px;
}

/*-------------------------*/
/* Filter Style
---------------------------*/
.fillform-table-search-input {
    float: right;
    padding:0;
    margin-left: 16px;
    pointer-events: visible;
}
.fillform-table-search-input input {
    padding: 7px 7px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    pointer-events: visible;
}
.fillform-table-search-input label.form-lable{
    min-width: 180px;
}
.fillform-table-search-input .form {
    margin: 5px 0;
}
.fillform-table-search-input app-method-table-multiple-filter .behavior {
    z-index: 2;
    position: absolute;
    left: -29px;
    top: -2px;
    padding: 6px;
}
@supports (-moz-appearance: none) {
    .fillform-table-search-input app-method-table-multiple-filter .behavior {
       top: 11px;
     }
   }

.wizard-modal input {
    width: 300px !important;
}
app-method-paginator button {
    margin-bottom: 4px !important;
}

[pid="1SNMP_MANAGER_V4"] .hr-lable-table-style,
[pid="1SNMP_MANAGER_V6"] .hr-lable-table-style {
  display: block;
}
method-form-fillform-editor app-method-password span.form-lable-right {
    float: right;
}
method-form-fillform-editor .full-screen app-method-password span.form-lable-right {
    float: initial;
}
/* method-form-fillform-editor span.form-lable-right {
  float: right;
} */

/* method-form-fillform-editor span.form-lable-right input.u-mr-8.text-password {
  float: right;
} */


@-webkit-keyframes dt-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes dt-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

button.disabled.btn-loader::before {
  -webkit-animation: dt-spin 1s infinite steps(8);
  animation: dt-spin 1s infinite steps(8);

  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  margin-right: 4px;

  pointer-events: none;
  content: "\f110";
}

button.disabled.btn-loader.btn.btn--sm::before {
  color: #333333;
}

button.btn.disabled.btn-loader::before {
  color: #e50012;
}

button.disabled.btn-loader.btn.btn--primary::before {
  color: #ffffff;
}


div#BUTTON_GROUPMDIDDidC [dt-style="button_ajax@Last_Inform_Response_Time"] button.btn.disabled.btn-loader::before {
  color: #ffffff;
}

app-method-text-qrcode.app-method {
  position: inherit;
  float: left;
  padding: 16px 0 0 0;
}

.icon_svg {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 6px;
  opacity: 0.7;
}


.d3-tip {
  border: #666666;
  border-radius: 5px;
  background-color: #666666;
  font-size: 12px;
  color: #fff;
  padding: 8px;
  width: fit-content;
  display: flow-root;
}


.icon_svg_tip {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 6px;
}

.icon_Upstream {
  background-color: #ff315c;
}
.icon_Downstream {
  background-color: #00a9ac;
}
.icon_empty {
  background: transparent;
}

g.y.axis {
  color: #666;
}

g.x.axis {
  color: #666;
}

/* Force Update icon */
a[dt-uat-name="0Dynamic_DNS@Force Update"]:before {
    content: "\e94c";
    font-family: 'icomoon';
    vertical-align: middle;
    font-size: 12px;
    margin-left: 8px;
}
