
/*-----------------------------------------------*/
/*-------------------- Fonts --------------------*/
/*-----------------------------------------------*/

@font-face {
    font-family: 'brownstd-bold';
    src: url('fonts/BrownStd/BrownStd-Bold.eot');
    src: url('fonts/BrownStd/BrownStd-Bold.eot') format('embedded-opentype'),
		 url('fonts/BrownStd/BrownStd-Bold.woff2') format('woff2'),
         url('fonts/BrownStd/BrownStd-Bold.woff') format('woff'),
         url('fonts/BrownStd/BrownStd-Bold.ttf') format('truetype'),
         url('fonts/BrownStd/BrownStd-Bold.svg#webfontregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'brownstd-regular';
    src: url('fonts/BrownStd/BrownStd-Regular.eot');
    src: url('fonts/BrownStd/BrownStd-Regular.eot') format('embedded-opentype'),
		 url('fonts/BrownStd/BrownStd-Regular.woff2') format('woff2'),
         url('fonts/BrownStd/BrownStd-Regular.woff') format('woff'),
         url('fonts/BrownStd/BrownStd-Regular.ttf') format('truetype'),
         url('fonts/BrownStd/BrownStd-Regular.svg#webfontregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*-----------------------------------------------*/
/*-------------------- Colors -------------------*/
/*-----------------------------------------------*/

/*----------- Background Colors ---------------*/

.bg-light-gray {
	background-color: #f5f5f5;
}

.bg-dark-gray {
	background-color: #191919;
}

.bg-med-gray {
	background-color: #9a9a9a;
}

.bg-dark-blue {
	background-color: #0E1E70;
}

.bg-light-blue {
	background-color: #0091ff;
}

.bg-white {
	background-color: #fff !important;
}

/*---------- Font Colors -------------*/

.font-light-gray {
	color: #ccc;
}

.font-dark-gray {
	color: #191919;
}

.font-med-gray {
	color: #9a9a9a;
}

.font-gray-disclaimer {
	color: #626264;
}

.font-dark-blue {
	color: #0E1E70;
}

.font-dark-blue-plan-name {
	color: #274185
}

.font-light-blue {
	color: #1e78fe;
}

.font-white {
	color: #fff;
}

.font-black {
	color: #000;
}
.font-warning-red {
	color: #ac2e2e;
}
/*---------------------------------------------*/
/*------------------ General ------------------*/
/*---------------------------------------------*/

body {
	background-color: #f5f5f5;
	margin: 0;
	padding: 0;
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: 1.5em;
}

/*----------- Micro Clearfix ------------*/
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}
/*------ Box Sizing Reset*/
html {
	box-sizing: border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
.loader {
	border: 3px solid #f3f3f3;
	border-radius: 50%;
	border-top: 3px solid transparent;
	width: 2em;
	height: 2em;
	margin: 0 auto;
	background: url(../images/loading.gif) no-repeat;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

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

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

#wait-overlay {
	position:fixed;
	left:0;right:0;top:0;bottom:0;
	max-width:480px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.5);
	-moz-opacity: 0.5;
	opacity: .5;
	filter: alpha(opacity=50);
	z-index:9999;
}

#wait-overlay:after {
	content:'';
	display:block;
	position:absolute;
	border: 6px solid #606060 !important;
	border-top: 6px solid transparent !important;
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	left:49% !important;
	top:40% !important;
	margin: 0 !important;
	background: url(../images/loading.gif) no-repeat;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 1001;
}

a[disabled], button[disabled] {
	pointer-events: none;
	cursor: default;
	display: block;
	opacity: 0.5;
}

input[type="checkbox"][readonly], select[readonly] {
	pointer-events: none;
}

/*---------------------------------------------*/
/*--------------- Basic Layout ----------------*/
/*---------------------------------------------*/
.main-wrapper {
	margin: 0;
	padding: 0 5% 0 5%;
}

.main-container {
	margin: 0 auto;
	width: 100%;
	max-width: 480px;
	background-color: #f5f5f5;
}

.main-container-billing-details {
	padding-top: 2rem;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.05);
	background-color: #fff; /*new check?*/
}

.header {
	 padding: 28px;
	 margin: 0 auto 1em auto;
	 max-width: 480px;
 }

.header-wrapper {
	width: 100%;
	background-color: #fff;
}

.header-back-icon {
	font-size: 1em;
	line-height: .65em
}

.center-text {
	text-align: center;
}

.left-text {
	text-align: left !important;
}

.font-not-bold {
	font-weight : normal !important;
}

.header-title {
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
	font-size: .9em;
	text-align: center;
}

.header-back-icon {
	position: absolute;
	z-index: 10;
	padding-left: 35px;
}

div .billing-rule {
	min-height: 1.5px;
	border-top: 1px;
	background-color: #cecece;
	margin: 1em 0 1em;
}

.login-title {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: .75em;
	margin-bottom: .5px;
	text-align: center;
}

.content-title {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: 1em;
	text-align: center;
	margin-bottom: 1.5em;/*need check?*/
	padding-top: 1em;
}

.container-label {
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
	font-size: 1.6rem;
	line-height: 1em;
	margin-bottom: 24px;
}

.container-label-left {
	float: left;
	width: 60%;
}

.container-label-right {

	text-align: right;
	float: right;
	width: 30%;
	margin-left: 2rem;
}

.billing-price-message {
    font-size: .35em;
    letter-spacing: .1em;
}

.billing-label-header {
    margin: 1rem auto 0 1rem;
}

.billing-label-header, .billing-label-details {
	text-align: center;
	font-size: 1rem;
	line-height: .75rem;
}

.billing-message {
    font-size: .9rem;
    margin: 0;
}

.billing-label-details {
    margin-top: 1rem;
}
/*--------------- Lightboxes/Modals ----------------*/

div[id^='lbm-modal-'] {
	margin: 7%;
	display: none;
}

.modal-container {
	background-color: #ffffff;
	padding: 8%;
}

.modal-message-icon {
	display: block;
	margin: .5rem auto 1.75rem auto;
}

.modal-message-icon-warn {
	color: #f39c12;
	display:flex;
	justify-content: center;
}

.modal-message-header {
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
	text-align: center;
	font-size: 1.75rem;
	margin: 5% auto 2% auto;
}

.modal-message {
	text-align: center;
	font-size: 1rem;
	line-height: 1.75rem;
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	margin: 1rem auto .75rem auto;
}

.modal-warning {
	text-align: center;
	font-size: 1rem;
	line-height: 1.75rem;
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
	margin: 1.75rem auto 1.75rem auto;
}

.modal-button {
	margin-bottom: .25rem;
}

.modal-bottom-link {
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
	text-align: center;
	font-size: 1.15rem;
	margin-top: 1.5rem;
}

.lb_overlay {
	position: fixed !important;
}
/*--------------- Select Plan ----------------*/

.plan-cost {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: 2.25em;
	line-height: 1em;
	display: inline;
}

.plan-details {
	font-size: .45em;
}

.billing-details {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: .75rem;
	line-height: 1rem;
	margin: 20px auto .75rem auto;
	max-width: 480px;/*need check?*/
}

.margin15 {
	margin: 1.5rem 0 2rem 0;
}

.disclaimer {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: .65rem;
	line-height: .9rem;
	margin: 20px auto 0 auto;
	max-width: 480px;
}
.nowrap {
	white-space: nowrap;
}

.inline {
	display: inline-block;
}
/*need check?*/
/*.content-wrapper {*/
/*	padding: 45px 30px 45px 50px;*/
/*	box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.05);*/
/*	background-color: #eaa7a7;*/
/*	margin: 1.2em 0;*/
/*}*/

.content-wrapper {
	background-color: #fff;
	padding: 34px;
	margin: 1em auto 0;
	box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.05);
	background-color: #fff;
}

/*need check?*/
.content-body {
	min-height: 400px;
}
/*
div[class*='-read'] {color:blue; }*/

.content-wrapper-billing {
	background-color: #fff;
	padding: 34px;
	margin-top: 1em;
	box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.05);
}

.content-wrapper-billing-top {
	margin-bottom: 0;
	padding-bottom: 2.5rem;
}

.current-selection-container {
	border: 5px solid #0E1E70;
}

.bulleted-list {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: 1rem;
	padding-left: 18px;
	margin: 35px 0 0 30px;
}

.bulleted-list li {
	line-height: 1.75em;
}

.btn-large {
	font-size: .75em;
	width: 80%;
	text-align: center;
	padding: 14px 0;
	border-radius: 3px;
	margin: 28px auto 0 auto;
	letter-spacing: 1px;
	cursor: pointer;
	display: block;
}

.btn {
	font-size: .7em;
	text-align: center;
	padding: 14px 10px;
	border-radius: 3px;
	margin: 28px 0 0 0;
	letter-spacing: 1px;
	cursor: pointer;
}

.btn-wrapper {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-top: 1.5rem;
}

.align-center {
	display: flex;
	justify-content: center;
}

.ml-1 {
	margin-left: 1rem;
}

.form-signin .btn-large {
	width : 100%;
}

.bg-dark-blue:hover {
	background-color: #1e78fe;
}

.inline-link:hover {
	text-decoration: underline;
}
a:hover {
	cursor: pointer;
}

.btn-text {
	text-decoration: none;
}

.billing-icon {
	text-align: center;
}

.main-container-billing-details .billing-icon, .content-wrapper .billing-icon {
	margin-bottom: 2rem;
}

.snapshot-label-wrapper {
	text-align: center;
}

.snapshot-label {
	font-size: 1.25rem;
	margin: 1rem auto;
}

.billing-notice {
	font-weight: 600;
}

.snapshot-pricing {
	font-size: 2.25rem;
}

.inline-link {
	font-size: 1.15rem;
	margin-top: 1.5rem;
}

/*.payment-link {
	font-size: .85rem;
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
}*/

.main-logo {
	display: block;
	margin: 0 auto 2rem;
	width: 335px;
	height: auto;
}

.forgot-login {
	display: block;
	text-align: center;
	text-decoration: none;
	margin-top: 2rem;
	font-size: 1.15rem;
}

/*----- Billing Warning ------*/

.billing-warning, .billing-error, .billing-info {
	padding: 1.25rem 10%;
	background-color: rgba(243, 156, 18, 0.2);
	margin : 30px -35px 0 -35px;
}

.billing-warning {
	background-color: rgba(243, 156, 18, 0.2);
}

.billing-info {
	background-color: #CAE7FD;
}

.billing-trial {
	padding: 1.25rem 10%;
	background-color: rgba(48, 152, 212, 0.3);
	margin : 1em 0 0 !important;
}
.billing-error {
	background-color: rgba(216, 13, 39, 0.2);
}

.content-wrapper-billing-top .billing-label-details {
	margin-bottom: 2rem;
}

.billing-warning-left, .billing-info-left {
	width: 20%;
	float: left;
	text-align: left;
	color: #f39c12;
	display:flex;
	align-items: center;
}

.billing-warning-right, .billing-info-right {
	width: 80%;
	float: left;
	text-align: left;
	font-size: 1.2rem;
	font-weight: 600;
	display:flex;
	align-items: center;
}

.billing-info-left {
	width: 15% !important;
	color: #0061AA !important;
}

.billing-info-right {
	width: 85% !important;
}

.billing-disclaimer {
	text-align: left;
	font-size: 1rem;
	margin-top: 1rem;
}

.billing-msg-row {
	display:flex;
}

.billing-error-left {
	width: 20%;
	float: left;
	text-align: left;
	color: #F00;
	display:flex;
	align-items: center;
}

.billing-error-right {
	width: 80%;
	float: left;
	text-align: left;
	font-size: 1.2rem;
	color: #d80d27;
	font-weight: 600;
}

.billing-trial-header {
	width: 100%;
	/*float: left;*/
	text-align: center;
	font-size: 1.2rem;
	color: #274185;
	font-weight: 600;
}

.billing-warning-message {
	font-size: .85rem;
	margin-top: 2.75rem;
	clear: both;
	text-align: center;
}
/*----- Payment Table ------*/

.payment-header {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	text-align: left;
	margin-top: 1rem;
	padding: .5rem .5rem;
	display:-webkit-flex;
	-webkit-justify-content:center;
	display:flex;
	justify-content:left;
}

.payment-data-header {
	-webkit-flex:1;
	flex:1;
	float: left;
	font-size: .75rem;
	text-align: left;
	margin-bottom: .25rem;
	padding: 0 .65rem;
}

.payment-block {
	border-radius: .25rem;
	background-color: #fff;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
	font-size: 1rem;
}

.payment-row {
	border-bottom: 1px solid #ccc;
	display:-webkit-flex;
	-webkit-justify-content:center;
	display:flex;
	justify-content:left;
}

.payment-row-last {
	border-bottom: none !important;
}

.payment-row-data {
	float: left;
	text-align: left;
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: .75rem;
	padding: 1rem .65rem;
	-webkit-flex:1;
	flex:1;
}

.camera-row {
	display: flex;
	align-items: center;
}

.camera-header-name {
	font-size: 1rem;
	font-weight: 800;
	width: 50%;
	padding: 1rem 0;
}

.camera-header-selection {
	font-size: 1rem;
	font-weight: 800;
	width: 50%;
	text-align: center;
	padding: 1rem 0.65rem;
}

.camera-row-name {
	font-size: 0.9em;
	flex: 0 0 50%;
	position: relative;
	padding: 0.7rem 0 !important;
/*	display:	table-cell;
	vertical-align: middle;*/
	/*width: 35%;*/
}

.camera-row-selection {
	font-size: 0.75em;
	flex: 0 0 50%;
	position: relative;
	padding: 0.7rem 0 !important;
/*	display:	table-cell;
	vertical-align: middle;*/
	text-align: center;
	/*width: 65%;*/
}

.camera-total-text {
	font-size: 1rem;
	font-weight: 600;
	margin-top: 0.5em;
	width: 50%;
}

.camera-total {
	width: 50%;
	text-align: center;
	margin: 0.25em 0 0 0 !important;
	font-size: 1.5rem !important;
	font-weight: 600;
}

#perCameraText {
	font-size: 1rem;
	/*font-weight: 600;*/
}

.camera-elections {
	font-size: 1rem;
	padding: 0 0.65rem;
	margin-top: 1em;
}

/*----------- Billing Success -----------------*/

.content-title-large {
	font-size: 2rem;
	line-height: 2.5rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

.billing-success-inner-header {
	font-size: 1rem;
	line-height: 1.5rem;
}

.billing-success-message {
	font-size: .75rem;
	line-height: 1rem;
}

.billing-rule-payment {

}


/*----------- Terms of Service -----------------*/

.content-title-terms-of-service {
	margin-bottom: 2rem;
	text-align: center;
}

.terms-container {
	background-color: #fff;
}

.terms-scrollbox {
	font-size: 1rem;
	max-height: 600px;
	overflow-y: scroll;
	/*border: 1px solid #3d3d3d;*/
	background-color: #fff;
	padding: 1rem 0 1rem 1rem;
}
/*---------------------------------------------*/
/*--------------- Form Controls ---------------*/
/*---------------------------------------------*/

form {
	margin-bottom: 12px;
}

input, button, textarea, select {
    border-radius: 0;
	box-shadow: 0 2px 15px 0 rgb(217 217 217 / 50%);
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: normal;
    margin: 0;
    overflow: visible;
    text-transform: none;
}

.plan-radio {
	position: relative;
}

/* visually hide the radio button,
   and set it up to be positioned over
   the styled radio button replacement
*/
.plan-radio > input[type="radio"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none; /* in case this ever gets supported */
	background: none;
	opacity: .00001;
	z-index: 2;
}

.plan-radio > label {
	display: inline-block;
	padding: .25em .5em 0 1.35em;
}

.plan-radio > label:before,
.plan-radio > label:after {
	border: 1px solid;
	height: .85em;
	left: .125em;
	position: absolute;
	top: .425em;
	width: .85em;
}

.plan-radio > input[type="radio"] {
	border: 3px solid;
	height: .85em;
	left: 0;
	position: absolute;
	top: 0.3em;
	width: .85em;
}

.plan-radio > input[type="radio"],
.plan-radio > label:before,
.plan-radio > label:after {
	border-radius: 100%;
	content: " ";
	transition:
		border-color .2s ease-in-out,
		box-shadow .2s ease-in-out;
}

.plan-radio > label:after {
	border-color: #565656;
}

.plan-radio > label:before {
	border-color: transparent;
	box-shadow: 0 0 0 0px rgba(0,0,0,0);
}

.plan-radio > input:checked ~ label:before {
	border-color: transparent;
	box-shadow: 0 0 0 2px #0d5192;
}

.plan-radio > input:focus ~ label:before {
	border-color: transparent;
	box-shadow: 0 0 0 2px #228BEC;
}

.plan-radio > input:checked ~ label:after {
	border-color: #fff;
	border-width: 2px;
	box-shadow: inset 0 0 0 20px #0d5192;
}

.plan-radio > input[disabled] ~ label {
	opacity: .5;
}

.flag-current {

}

.login-label {
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
	font-size: 1rem;
	display: block;
	margin: 2em 0 .5rem 0;
}

.login-label-half {
	font-family: 'brownstd-bold', arial, helvetica, sans-serif;
	font-size: 1rem;
	display: block;
	margin: 2em 0 .5rem 0;
}

.input-login {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	padding: 1.25rem 1rem 1rem 1rem;
	border-radius: 3px;
	background-color: #fff;
	width: 100%;
	border: none;
	font-size: 1rem;
}

.autocomplete-item {
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	font-size: 1rem;
}

#terms-chkbox-blk {
	display: table-cell;
	width: 4%;
	vertical-align: middle;
	padding-left: 10px;
}
#terms-chkbox-blk-1 {
	display: table-cell;
	width: 4%;
	vertical-align: middle;
	padding-left: 10px;
}
#termsOfServiceForm {
	width: 90%;
	margin: 0 auto;
}

#terms-blk {
	margin-top: 0.8rem;
}
#terms-blk-1 {
	margin-top: 0.8rem;
}
#acceptterms {
	height: 1.3em;
	width: 1.3em;
	vertical-align: middle;
	cursor: pointer;
}
#acceptterms-1 {
	height: 1.3em;
	width: 1.3em;
	vertical-align: middle;
	cursor: pointer;
}

#terms {
	margin-top: 1rem;
}
#terms-1 {
	margin-top: 1rem;
}
.inline-label {
    display: table-cell;
    width: 70%;
    padding-left: 1rem;
}

.inline-label .login-label {
	margin: 1em 0 .5rem 0 !important;
}

.input-container-left {
    float: left;
    width: 48%;
}

.input-container-right {
    float: right;
    width: 48%;
}

.input-login-half {
    width: 100%;
    font-family: 'brownstd-regular', arial, helvetica, sans-serif;
    padding: 1.25rem 1rem 1rem 1rem;
    border-radius: 3px;
    border: none;
    font-size: 1rem;
}

#spinner {
    position: absolute;
    top: 40%;
    left: 48%;
    z-index: 1002;
    text-align:center;
}

#spinner .fa {
    font-size : 4em;
}

#modal {
    position:absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    z-index: 1001;
    -moz-opacity: 0.5;
    opacity: .50;
    filter: alpha(opacity=50);

}

.margin-bottom {
    margin-bottom: 1.5rem;
}

.margin-bottom-1 {
	margin-bottom: 1rem;
}

.margin-bottom-2 {
	margin-bottom: 2rem;
}

.no-padding-top {
    padding-top : 0px;
}

.fas {
    font-size: 2rem;
}

.fas-big {
	font-size: 2.8rem !important;
}

disabled{
    pointer-events: none;
}/*

.btn-disabled {
    !*background-color: grey;*!
	opacity: 0.5;
}*/

.input-cc-container {
	position: relative;
	padding: 0;
	margin: 0;
}
.input-cc-container i {
	position: absolute;
	bottom: 7px;
	left: 12px;
	font-size: 38px;
	color: #959595 !important;
}
.padding-left-1 {
	padding-left:4rem!important;
}

.margin-top-0 {
	margin-top : 0;
}

.margin-top-1 {
	margin-top : 0.5rem;
}

.margin-top-2 {
	margin-top : 2rem;
}

.margin-bottom-3 {
	margin-bottom : 3rem;
}

.strip-top-margin {
	margin-top : 0 !important;
}

label.error {
	z-index: 5;
	display: block;
	max-width: 75%;
	padding: 0.5rem;
	margin-top: 0.1rem;
	font-size: 1rem;
	line-height: 1;
	color: #bf1926;
}

label.error:before {
	display: block !important;
}

input.error {
	border: 1px solid red;
}

.custom-select {
	position: relative;
	background-color: #FFF;
	border-radius: 3px !important;
}
.custom-select:after {
	content: "\f078";
	font-family: 'FontAwesome';
	position: absolute;
	top: 0.6em;
	right: 15px;
	z-index: 5;
}
select {
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 3px !important;
	background-color: transparent;
	position: relative;
	cursor: pointer;
	z-index: 10;
	font-family: 'brownstd-regular', arial, helvetica, sans-serif;
	padding: 1.25rem 1rem 1rem 1rem;
	width: 100%;
	border: none;
	font-size: 1rem;
}

/* toaster css*/
.toast-bottom-center {
	bottom: 30% !important;
}

.toast-message {
	font-size: 0.75em !important;
	margin-bottom: -5px;
}

#toast-container > div {
	width: 350px !important;
}

.container-label-wrapper > .bulleted-list{
	padding-left: 0px !important;
}

.hidden {
	display: none;
}

.radiowrapper {
	display: flex;
	margin-bottom: 1rem;
	overflow: hidden;
}

.radiowrapper input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.radiowrapper label {
	background-color: #9a9a9a;
	color: #0E1E70;
	/*letter-spacing: 1px;*/
	cursor: pointer;
	text-align: center;
	padding: 0.7rem 0.5rem;
	border-radius: 3px;
	margin: 0 auto;
/*	font-size: 0.8rem;
	text-align: center;
	padding: 0.5rem 1rem;
	margin-right: -1px;*/
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.1s ease-in-out;
}

.radiowrapper label .label-header {
	font-size: 0.9em;
	line-height: 1.5em;
}

.radiowrapper label .label-message {
	font-size: 0.8rem;
	line-height: 0.5rem;
}

.radiowrapper label:hover {
	cursor: pointer;
}

.radiowrapper input:checked + label {
	background-color: #0E1E70;
	box-shadow: none;
	color: #FFFFFF;
}

.radiowrapper label:first-of-type {
	border-radius: 4px 0 0 4px;
	border: 2px solid #0E1E70;
}

.radiowrapper label:last-of-type {
	border-radius: 0 4px 4px 0;
	border: 2px solid #0E1E70;
	border-left:none;
}

.camera-list {
	margin: 2em 0;
}

.switch {
	position: relative;
	display: inline-block;
	width: 4em;
	height: 1.8em;
}

.switch input {display:none;}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: grey;
	-webkit-transition: .4s;
	transition: .4s;
	display: flex;
}

.slider:before {
	position: absolute;
	content: "";
	height: 1.35em;
	width: 1.35em;
	left: 3px;
	right: 3px;
	bottom: 4px;
	top: 2px;
	/*
	padding: 0 4px;
	*/
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	/*vertical-align: -50%;*/
/*	display: flex;
	align-items: center;*/
/*	display: flex;
	align-items: center;
	margin: auto 0;*/
}

input:checked + .slider {
	background-color: #0091ff;
}

input:disabled + .slider{
	opacity: 0.4;
}

input:focus, select:focus{
	outline: 0 !important;
	box-shadow: inset 0 1px 1px rgb(255 255 255), 0 0 8px rgb(102 175 233);
}

input:checked + .slider:before {
	-webkit-transform: translateX(2.15em);
	-ms-transform: translateX(2.15em);
	transform: translateX(2.15em);
}

/*------ ADDED CSS ---------*/
.on{
  display: none;
}

.on, .off
{
	color: white;
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	font-size: 0.8rem;
	font-family: Verdana, sans-serif;
}

input:checked+ .slider .on
{display: block;}

input:checked + .slider .off
{display: none;}

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

/* Rounded sliders */
.slider.round {
	border-radius: 1.1em;
}

.slider.round:before {
	border-radius: 50%;
}
.loading-container {
	margin: 0 auto;
	width: 10%;
}

/*-------------------------------------------------------*/
/*--------------- Responsive Media Quries ---------------*/
/*-------------------------------------------------------*/


/*---------------- Browser Specific -----------*/


@media screen and (-ms-high-contrast: active) {

	.plan-radio > input:checked ~ label:before {
		background: window;
		border: 12px solid buttonface;
		box-shadow: none;
	}

}


@media screen and (max-width: 767px) {

	.login-wrapper {
		width: 80% !important;
		margin: 0 auto;
	}
	.container-label {
		margin: 0;
	}
	.content-title-large {
		font-size: 1.6rem;
		line-height: 2.5rem;
		margin: .75rem 0;
	}

	.content-wrapper {
		background-color: #fff;
		padding: 18px;
		width: 90%;
	}
	.billing-icon {
		margin-bottom: 1.5rem;
	}

	.content-body {
		width: 90%;
		margin: 0 auto;
	}

	.plan-cost {
		font-size: 1.5em;
		display: inline;
	}

	.cost-wrapper {
		margin: 15px 0 0px;
	}

	.container-label-left {
		width: 60%;
	}

	.billing-warning, .billing-trial, .billing-error, .billing-info {
		margin: 20px -20px 0px;
		padding: 1rem 10%;
	}



	.billing-error-right, .billing-warning-right, .billing-trial-header, .billing-info-right {
		font-size: 1rem;
	}

	.billing-disclaimer {
		font-size: 0.9rem;
	}

	.billing-label-header, .billing-label-details {
		line-height: 1.2rem;
		margin-top: 0.6rem;
	}

	.btn-large {
		font-size: .7em;
		padding: 10px 0;
		margin: 15px auto 0 auto;
	}
	.modal-container {
		width: 90%;
		margin: 0 auto;
	}

	.btn-wrapper {
		margin-top: 0.9rem;
	}

	.loader {
		width: 1.4em;
		height: 1.4em;
		border: 2px solid #f3f3f3;
		border-top: 2px solid transparent;
	}

	.input-login, .input-login-half, select {
		padding: 1rem 0.75rem 0.75rem 0.75rem;
		font-size: 0.9rem;
	}

	.custom-select:after {
		font-size: 0.85em;
		top: 0.5em;
	}

	.login-title {
		font-size: .7em;
	}

	.main-logo {
		/*margin: 1rem auto 3rem auto;*/
	    height: 25%;
    }

	.inline-link {
		font-size: 1rem;
	}

	.snapshot-pricing {
		font-size: 1.8rem;
	}
	.snapshot-label {
		font-size: 1.15rem;
	}
	span.card span {
		top: 4px !important;
	}
	.login-label, .login-label-half {
		font-size: 0.95rem;
	}
	.billing-message {
		font-size: 0.85rem;
	}
	.header {
		padding: 14px 28px;
		margin: 0 auto 0.5em auto;
	}
	.fas {
		font-size: 1.5rem;
	}
	.fas-big {
		font-size: 2rem !important;
	}
	.header-back-icon {
		padding-top: 5px;
	}
	.content-title {
		font-size: 0.92em;
		margin-bottom: 1.2em;
		padding-top: 0.75em;
	}
	.terms-container {
		width: 95%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 680PX) {

    /*need check?*/
	/*.container-label-left {
		float: left;
		clear: both;
		text-align: left;
		width: 60%;
		font-size: .65rem;
		margin: 1rem 0 24px 2rem;
	}*/

	.login-wrapper {
		width: 100% !important;
	}

	.content-wrapper {
		width: 100% !important;
	}

	.container-label-left {
		max-width: 60%;
	}
	.container-label-right {
		float: right;
		/*clear: both;*/
		text-align: left;
		width: 35%;
		font-size: .65rem;
		margin: 1rem 0 24px 2rem;
		vertical-align: middle;
	}

	.billing-message {
		margin: .5rem auto 1.5rem auto;
	}

	.container-label-right {
		margin: 0;
	}

}

@media screen and (max-width: 480px) {

	.plan-cost {
		margin-top: 1.5rem;
	}
	.billing-warning-message {
		font-size: .85rem;
		margin-top: 3rem;

	}
}


@media screen and (max-width: 350px) {

	.billing-message {
		margin-top: .25rem;
		float: none;
		clear: both;
		width: 100%;
	}

}
