@charset "ISO-8859-1";
.switch {
	position: relative;
	display: block;
	vertical-align: top;
	width: 50px;
	height: 15px;
	padding: 3px;
	margin: 0 10px 10px 0;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	border-radius: 18px;
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	box-sizing:content-box;
}
.switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	box-sizing:content-box;
}
.switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 10px;
	text-transform: uppercase;
	background: #999999;
	border-radius: inherit;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
	box-sizing:content-box;
}
.switch-label:before, .switch-label:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	box-sizing:content-box;
}
.switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #ffffff;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #ffffff;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	opacity: 0;
}
.switch-input:checked ~ .switch-label {
	background: #50a3f6;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
	opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
	opacity: 1;
}
.switch-handle {
	position: absolute;
	top: 6px;
	left: 7px;
	width: 10px;
	height: 10px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	border-radius: 100%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 10px;
	height: 10px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
	border-radius: 5px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
	left: 40px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
 
/* Transition
========================== */
.switch-label, .switch-handle {
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
}



/* 3-way toggle */
.tri-state-toggle {
    background: #003a70!important;
    box-shadow: inset 0 2px 8px 0 rgba(165,170,174,0.25);
    border-radius: 24px;
    display: inline-block;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
  transition: all 500ms ease; 
}

.tri-state-toggle-button {
    border-radius: 22px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    background-color: transparent;
    border: 0px solid transparent;
    margin: 2px;
    color: white;
    cursor: pointer;
  
/*    -webkit-transition: all 0.5s ease-in-out;
  -moz-transition:    all 0.5s ease-in-out;
  -ms-transition:     all 0.5s ease-in-out;
  -o-transition:      all 0.5s ease-in-out; */
  transition:         all 0.5s ease;
}

.tri-state-toggle-button.active {
    background-image: linear-gradient(
                            90deg,
                            #65a4ef,
                            #65a4ef,
                            #65a4ef
                          );
    border: 0px solid rgba(207,207,207,0.6);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
    color: white;
    font-weight: 500;
  transition: all .5s ease-in;
}

.tri-state-toggle-button:focus {
  outline: none;
}




.cambium-color {
	background: #003a70!important;
    color: #ffffff!important;
}
.cambium-light {
    color:#65a4ef!important;
    background-color:#ffffff!important;
}


#tree {
    background-color:#003a70!important;
    color: #ffffff;
}

/* .jstree-default .jstree-clicked { */
/*     background-color:#65a4ef!important; */
/*     color:#ffffff!important; */
/* } */

.jstree-default .jstree-hovered {
    background-color:#65a4ef!important;
    color:#ffffff!important;
}


.jstree-cambium-light .jstree-clicked {
    background-color:#65a4ef!important;
    color:#ffffff!important;
}

.jstree-cambium-light .jstree-hovered {
    background-color:#65a4ef!important;
    color:#ffffff!important;
}


/* jstree contextmenu styling */

.jstree-contextmenu .jstree-anchor {
  -webkit-user-select: none;
  /* disable selection/Copy of UIWebView */
  -webkit-touch-callout: none;
  /* disable the IOS popup when long-press on a link */
  user-select: none;
}
.vakata-context {
  display: none;
}
.vakata-context,
.vakata-context ul {
  margin: 0;
  padding: 2px;
  position: absolute;
  background: #f5f5f5;
  border: 1px solid #979797;
  box-shadow: 2px 2px 2px #999999;
  background: #003a70;
}
.vakata-context ul {
  list-style: none;
  left: 100%;
  margin-top: -2.7em;
  margin-left: -4px;
}
.vakata-context .vakata-context-right ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px;
}
.vakata-context li {
  list-style: none;
}
.vakata-context li > a {
  display: block;
  padding: 0 2em 0 2em;
  text-decoration: none;
  width: auto;
  color: white;
  white-space: nowrap;
  line-height: 2.4em;
  text-shadow: none;
  border-radius: 1px;
}
.vakata-context li > a:hover {
  position: relative;
  background-color: #65a4ef;
  box-shadow: 0 0 2px #0a6aa1;
}
.vakata-context li > a.vakata-context-parent {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAHCAMAAADpsEdvAAADAFBMVEUoKCj///8AAADAwMDo6OgAAABA4ND//+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAluxjpAAABAHRSTlP/AP//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////rTvmKwAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABtJREFUCJljYGeEAwZ2dmQ2OzKbHbs4knqEOQAeQgCuqpUWKwAAAABJRU5ErkJggg==");
  background-position: right center;
  background-repeat: no-repeat;
}
.vakata-context li > a:focus {
  outline: 0;
}
.vakata-context .vakata-context-no-icons {
  margin-left: 0;
}
.vakata-context .vakata-context-hover > a {
  position: relative;
  background-color: #65a4ef;
  box-shadow: 0 0 2px #0a6aa1;
}
.vakata-context .vakata-context-separator > a,
.vakata-context .vakata-context-separator > a:hover {
  background: white;
  border: 0;
  border-top: 1px solid #e2e3e3;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  padding: 0;
  margin: 0 0 0 2.4em;
  border-left: 1px solid #e0e0e0;
  text-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  border-radius: 0;
}
.vakata-context .vakata-contextmenu-disabled a,
.vakata-context .vakata-contextmenu-disabled a:hover {
  color: silver;
  background-color: transparent;
  border: 0;
  box-shadow: 0 0 0;
}
.vakata-context .vakata-contextmenu-disabled > a > i {
  filter: grayscale(100%);
}
.vakata-context li > a > i {
  text-decoration: none;
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background: transparent;
  margin: 0 0 0 -2em;
  vertical-align: top;
  text-align: center;
  line-height: 2.4em;
}
.vakata-context li > a > i:empty {
  width: 2.4em;
  line-height: 2.4em;
}
.vakata-context li > a .vakata-contextmenu-sep {
  display: none;
  width: 1px;
  height: 2.4em;
  background: #003a70;
  margin: 0 0.5em 0 0;
  border-left: 1px solid #003a70;
}
.vakata-context .vakata-contextmenu-shortcut {
  font-size: 0.8em;
  color: silver;
  opacity: 0.5;
  display: none;
}
.vakata-context-rtl ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px;
}
.vakata-context-rtl li > a.vakata-context-parent {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAHCAMAAADpsEdvAAADAFBMVEUoKCj///8AAADAwMDo6Oj//+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4GCmqAAABAHRSTlP/AP//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////rTvmKwAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABtJREFUCJljYIQDVgYEE8FmRbBZWbGLo6gHcgAWbgCOQVZoIAAAAABJRU5ErkJggg==");
  background-position: left center;
  background-repeat: no-repeat;
	
}
.vakata-context-rtl .vakata-context-separator > a {
  margin: 0 2.4em 0 0;
  border-left: 0;
  border-right: 1px solid #65a4ef;
}
.vakata-context-rtl .vakata-context-left ul {
  right: auto;
  left: 100%;
  margin-left: -4px;
  margin-right: auto;
}
.vakata-context-rtl li > a > i {
  margin: 0 -2em 0 0;
}
.vakata-context-rtl li > a .vakata-contextmenu-sep {
  margin: 0 0 0 0.5em;
  border-left-color: #65a4ef;
  background: #65a4ef;
}
#jstree-dnd.jstree-default-dark {
	color:white;
}


/* Bootstrap styling */
.accordion-button:not(.collapsed)::after {
	color: #65A4EF !important;
	background-color: #003a70 !important;
}

.accordion-button:not(.collapsed) {
	color: #65A4EF !important;
	background-color: #003a70 !important;
}
.accordion-button.collapsed {
	color: #65A4EF !important;
	background-color: #003a70 !important;
}

.accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}



.owl-pagination .owl-page span {
    background-color: #ffffff!important;
}
.owl-pagination .owl-page .active span
{
    background-color: #003a70 !important;
}


.ui_dialog, .ui-titlebar, .ui-dialog-title, .ui-widget-header, .ui-dialog-buttonpane {
	background: #ffffff!important;
	color: #65a4ef!important;
	border: none;
	text-transform: uppercase;
}

.ui-dialog-titlebar-close {
	display: none;
}


.cambium_ok_button {
	color: #ffffff!important;
	background: #65a4ef!important;
	width: 80px;
}

.cambium_cancel_button {
	background: #ffffff!important;
	color: #65a4ef!important;
	border: .01em solid #65a4ef;
	width: 80px;
}

.cambium_register_button {
	color: #ffffff!important;
	background: #65a4ef!important;
	border: 0px;
	width: 260px;
	height: 30px;
}


.cambium_save_button {
	color: #ffffff!important;
	background: #65a4ef!important;
	width: 120px;
	padding: 5px;
	margin-right: 20px;
	text-align:center;
	text-decoration: none;
	display: inline-block;
	font-size: small;
    font-weight: 700;
    cursor: pointer;
}

.cambium_feedback_button {
	color: #ffffff!important;
	background: #65a4ef!important;
	width: 100px;
	margin-right: 20px;
	text-align:center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
    font-weight: 700;
    cursor: pointer;
	height:18px;
	vertical-align: middle;
}

.cambium_logout_button {
	color: #65a4ef!important;
	background: #003a70!important;
	border: .03em solid #65a4ef;
	width: 120px;
	padding: 5px;
	margin-right: 20px;
	text-align:center;
	text-decoration: none;
	display: inline-block;
	font-size: small;
    font-weight: 700;
}
.cambium_dasboard_button {
	color: #65a4ef!important;
	background: #003a70!important;
	border: .03em solid #65a4ef;
	padding: 5px;
	margin-right: 10px;
	text-align:center;
	text-decoration: none;
	display: inline-block;
	font-size: small;
    font-weight: 700;
}
/************************************/

#radio-selector-container .switch {
	position: relative;
	display: block;
	vertical-align: top;
	width: 80px;
	height: 20px;
	padding: 3px;
	margin: 0 10px 10px 0;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	border-radius: 18px;
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	box-sizing:content-box;
}
#radio-selector-container .switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	box-sizing:content-box;
}
#radio-selector-container .switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 10px;
	text-transform: uppercase;
	background: #999999;
	border-radius: inherit;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
	box-sizing:content-box;
}
#radio-selector-container .switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #ffffff;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
#radio-selector-container .switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #ffffff;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	opacity: 0;
}
#radio-selector-container .switch-input:checked ~ #radio-selector-container .switch-label {
	background: #50a3f6;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
#radio-selector-container .switch-input:checked ~ #radio-selector-container .switch-label:before {
	opacity: 0;
}
#radio-selector-container .switch-input:checked ~ #radio-selector-container .switch-label:after {
	opacity: 1;
}
#radio-selector-container .switch-handle {
	position: absolute;
	top: 5px;
	left: 7px;
	width: 15px;
	height: 15px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	border-radius: 100%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
#radio-selector-container .switch-handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
	border-radius: 6px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
#radio-selector-container .switch-input:checked ~ #radio-selector-container .switch-handle {
	left: 65px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.radio-toggle {
    background: #ffffff!important;
    box-shadow: inset 0 2px 8px 0 rgba(165,170,174,0.25);
    border-radius: 24px;
    display: inline-block;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
  transition: all 500ms ease; 
}

.radio-toggle-button {
    border-radius: 18px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    background-color: transparent;
    border: 0px solid transparent;
    margin: 2px;
    color: #333;
    cursor: pointer;
  
  transition:         all 0.5s ease;
}

.radio-toggle-button.active {
    background-image: linear-gradient(
                            90deg,
                            #65a4ef,
                            #65a4ef,
                            #65a4ef
                          );
    border: 0px solid rgba(207,207,207,0.6);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
    color: white;
    font-weight: 500;
  transition: all .5s ease-in;
}

.radio-toggle-button:focus {
  outline: none;
}
.radio-selector-container {
	display: flex;
}


/************************************/

#band-selector-container .switch {
	position: relative;
	display: block;
	vertical-align: top;
	width: 80px;
	height: 20px;
	padding: 3px;
	margin: 0 10px 10px 0;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	border-radius: 18px;
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	box-sizing:content-box;
}
#band-selector-container .switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	box-sizing:content-box;
}
#band-selector-container .switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 10px;
	text-transform: uppercase;
	background: #999999;
	border-radius: inherit;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
	box-sizing:content-box;
}
#band-selector-container .switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #ffffff;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
#band-selector-container .switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #ffffff;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	opacity: 0;
}
#band-selector-container .switch-input:checked ~ #band-selector-container .switch-label {
	background: #50a3f6;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
#band-selector-container .switch-input:checked ~ #band-selector-container .switch-label:before {
	opacity: 0;
}
#band-selector-container .switch-input:checked ~ #band-selector-container .switch-label:after {
	opacity: 1;
}
#band-selector-container .switch-handle {
	position: absolute;
	top: 5px;
	left: 7px;
	width: 15px;
	height: 15px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	border-radius: 100%;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
#band-selector-container .switch-handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 32px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
	border-radius: 6px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
#band-selector-container .switch-input:checked ~ #band-selector-container .switch-handle {
	left: 65px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.band-toggle {
    background: #ffffff!important;
    box-shadow: inset 0 2px 8px 0 rgba(165,170,174,0.25);
    border-radius: 24px;
    display: inline-block;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
  transition: all 500ms ease; 
}

.band-toggle-button {
    border-radius: 18px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    background-color: transparent;
    border: 0px solid transparent;
    margin: 2px;
    color: #333;
    cursor: pointer;
  
  transition:         all 0.5s ease;
}

.band-toggle-button.active {
    background-image: linear-gradient(
                            90deg,
                            #65a4ef,
                            #65a4ef,
                            #65a4ef
                          );
    border: 0px solid rgba(207,207,207,0.6);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
    color: white;
    font-weight: 500;
  transition: all .5s ease-in;
}

.band-toggle-button:focus {
  outline: none;
}
.band-selector-container {
	display: flex;
}

/*   Login            */
.cambium-loginleft {
	font-size: 36px;
	line-height: 36px;
	color: #FFFFFF;
	background: #003a70;
}

#cambium-contentTop #cambium-bannerTitle.wifi-designer p {
	font-size: 28px;
	line-height: 34px;
	margin: 20px auto 0;
}

.cambium-gradient {
	background: rgb(0, 61, 121);
  	background-image: linear-gradient(to bottom right, rgba(0,61 ,121, 1), rgba(101, 164,239, 1));
  	color: #ffffff;
  	height: 100%
}


.cambium-ruler {
	background: linear-gradient(to right, rgba(101, 164,239, 1), rgba(0,61,121,1));
	height: 2px;
	border: 0px;
	margin-top: 30px;
}

.list-group-item {
	list-style-type: square;
	margin: 20px 0;
}


#loginform, #registerform{
    color: #003a70!important;
	margin: 50px;
	font-size: 14px
}
#loginform h3 {
	font-size:26px;
}


#email, #loginerrorCss, #password, #adminlogin, #forgotpassword, cambium_login_button {
	margin-left:40px;
	margin-bottom: 12px
	
}


.form-registeruser #email {
	margin-left:0
}

.text-input {
	width: 300px;
}

#forgotpassword {
	font-size: 12px;
	max-width: 300px;
    text-align: right;
}

.cambium_login_button {
	color: #ffffff!important;
	background: #65a4ef!important;
	width: 300px;
	margin-left: 40px;
	border: 0;
	line-height: 28px;
}
.guest-button {
	background-color: #ffffff;
	color: #003a70;
	text-align: center;
	text-decoration: none;
	border: .03em solid #003a70;
	margin-left: 40px;
	line-height: 28px;
	margin-top:25px;
	width: 300px;
	display: block;
}
	
	
#register {
	margin-top: 65px;
	margin-left: 70px;
	font-size: 12px;
	
}	


.registerForm {
	border: 0px solid #aaa;
	margin-left: 40px;
}

h2{
	text-align: right;
}
.registerForm>span {
	clear: both;
	text-align: left;
	display: block;
	
}

.registerForm>span  span {
	margin: 2px 0px 2px 5px;
	display: inline-block;
}

.registerForm>span>span:first-child {
	width: 150px;
	/* font-weight: bold; */
	text-align: left;
	
}

.registerForm>span>span:first-child+span {
	width: 180px;
}

.registerForm>span>span:first-child+span:before {
	/* content: ":"; */
	margin-left: 2px;
	margin-right: 2px;
}

.registerForm h1 {
	color: #003a70;
	font-size: 26px;
	
}
.registerForm h2 {
	color: #65a4ef;
	font-size: 10px;
	text-transform: uppercase;
	text-align: left;
	margin-bottom: 0px;
	
}

#privacyPolicy, #optInPolicy {
	width : 260px;
	word-wrap: break-word;
	text-align : left;
	font-size: 12px
}

#uploadImgForm {
	margin: 20px;
}


.addmap-col1 {
	text-align:right;
}
.addmap-col2 {
	width: 250px;
	margin: 10px;
}

select {
	border: 1px solid #e3e3e3;
}

.labelColumn {
	text-align: right;
	margin-right:5px;
}

.inputColumn input{
	text-align: center;
	width:50px;
	margin-right:10px;
}

table#atable#addAccessPoint {
	border-collapse: separate;
	border-spacing: 5em;
}


table#addAccessPoint {
	border-collapse:  unset;
	border-spacing: .5em;
	width: 450px;
}



.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
   	border-radius: 50%!important;
   	border-radius: 50%!important;
	background: #65a4ef;
}



#viewBox table {
	width:100%;
}
#viewbox td{
	max-width:50%;
	width:50%;
}


#detailsBox table {
	width:100%;
}
#detailsBox td{
	max-width:50%;
	width:50%;
}


#right_buttons,img {
	vertical-align: middle;
}

.CambiumLogo {
	width: 300px;
}


.marquee, .marquee-with-options, .marquee-vert-before, .marquee-vert {
	color: #65a4ef;
	height: 150px;
	width: 350px;
	overflow: hidden;
	border: 1px solid #65a4ef;
	margin-left:75px;
	padding:15px
}

* {
	font-family: 'proxima-nova', sans-serif;
}
.newsbox {
	color: #003a70;
	height: 350px;
	width: 400px;
	overflow-y: auto;
	border: 1px solid #003a70;
	padding: 15px;
}


.rounded-corners {
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    -khtml-border-radius: 57px;
    border-radius: 7px;
}

#controlPanel {display:none; position: absolute; z-index: 300; background-color:#d7d7d7; }
#controlPanel-bar {border-width: 0px 0px 0px 0px; margin-bottom:40px;}

.import_warning {
	font-size: 8px;
	font-weight: bold;
	color: #D9027D;
}


.bom_table_class {
   width: 275px;
   table-layout: fixed;
   border-collapse: collapse;
 }
 .bom_table_class tbody {
   display: block;
   width: 100%;
   overflow-y: auto;
   height: 190px;
 }
 .bom_table_class thead tr {
   display: block;
 }
 .bom_table_class thead {
   background: #65a4ef;
   color: #fff;
 }
 .bom_table_class th,
 .bom_table_class td {
   padding: 0px;
   text-align: left;
   width: 150px;
 }
 
.iapPropertiesLabelColumn {
	text-align: left;
	margin-right:5px;
	width: 110px;	
}

.iapPropertiesInputColumn input{
	text-align: center;
	width:50px;
	margin-right:10px;
}
 
 
 
