/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background: lightskyblue; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
}

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea {
     padding: 15px; 
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%; 
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid lightskyblue;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: lightskyblue;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px lightskyblue;
}

#msform .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}



/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: lightskyblue;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: lightskyblue;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: lightskyblue;
    text-decoration: none;
}

img{
    max-width: 50px;
}


@import url(https://fonts.googleapis.com/css?family=Fredoka+One);

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html { overflow-y: scroll; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 62.5%;
  line-height: 1;
  color: #414141;
  
  padding: 25px 0;
}

::selection { background: lightskyblue; }
::-moz-selection { background: lightskyblue; }
::-webkit-selection { background: lightskyblue; }

br { display: block; line-height: 1.6em; } 

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }

input, textarea { 
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; 
}

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }

table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; /*max-width: 100%;*/ }

h1 {
  font-family: 'Fredoka One', Helvetica, Tahoma, sans-serif;
  color: yellow;
  /*text-shadow: 1px 2px 0 lightskyblue;*/
  font-size: 3.5em;
  line-height: 1.1em;
  padding: 6px 0;
  font-weight: normal;
  text-align: center;
}


/* page structure */
#w {
  display: block;
  width: 600px;
  margin: 0 auto;
}

#title {
  display: block;
  width: 100%;
  background: #95a6d6;
  padding: 10px 0;
  -webkit-border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

#page {
  display: block;
  background: #fff;
  padding: 15px 0;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.4);
  -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/** cart table **/
#cart {
  display: block;
  border-collapse: collapse;
  margin: 0;
  width: 100%;
  font-size: 1.2em;
  color: #444;
}
#cart thead th {
  padding: 8px 0;
  font-weight: bold;
}

#cart thead th.first {
  width: 175px;
  text-align: center,
}
#cart thead th.second {
  width: 45px;
  text-align: center,
}
#cart thead th.third {
  width: 230px;
  text-align: center;
}
#cart thead th.fourth {
  width: 130px;
  text-align: center;
}
#cart thead th.fifth {
  width: 20px;
}

#cart tbody td {
  text-align: center;
  margin-top: 4px;
}

tr.productitm {
  height: 65px;
  line-height: 65px;
  border-bottom: 1px solid #d7dbe0;
}


#cart tbody td img.thumb {
  vertical-align: bottom;
  /*border: 1px solid #ddd;*/
  margin-bottom: 4px;
}

.qtyinput {
padding: inherit !important;
  width: 33px;
  height: 22px;
  border: 1px solid #a3b8d3;
  background: #dae4eb;
  color: #616161;
  text-align: center;
  vertical-align: bottom;
}

tr.totalprice, tr.extracosts {
  height: 35px;
  line-height: 35px;
}
tr.extracosts {
  background: #e4edf4;
}

.remove {
  /* http://findicons.com/icon/261449/trash_can?id=397422 */
  cursor: pointer;
  position: relative;
  right: 12px;
  top: 5px;
}


.light {
  color: #888b8d;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.45);
  font-size: 1.1em;
  font-weight: normal;
}
.thick {
  color: #272727;
  font-size: 1.7em;
  font-weight: bold;
}


/** submit btn **/
tr.checkoutrow {
  background: #cfdae8;
  border-top: 1px solid #abc0db;
  border-bottom: 1px solid #abc0db;
}
td.checkout {
  padding: 12px 0;
  padding-top: 20px;
  width: 100%;
  text-align: right;
}


p{
    line-height: 1;
    padding: 5px;
}


/* CS 3 */

@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Lato');
@import url('https://fonts.googleapis.com/css?family=Cabin:700');

/*
input[type=number] {
    -moz-appearance:textfield;
}
*/

body {
  font-family: 'Roboto', "Open Sans", Helvetica, Arial, sans-serif;
}

.phone-number {
  font-size: 22px;
  color: #666;
  margin-top: 35px;
  line-height: 1.1em;
  margin-right: 20px;
}

.hours {
	display: none;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  line-height: 1.1em;
  margin-left: 4px;
}

.card {
  background: white;
  border-radius: 5px;
  width: 100%;
  clear: both;
  float: left;
  padding: 15px 40px 40px 40px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0
    rgba(0, 0, 0, 0.12);
}

.btn.btn-back {
  background: #bbb;
  color: #fff;
  padding: 10px 60px;
}

.btn.btn-back:hover {
  background: #888;
}
/*
.footer-buttons .btn.btn-lg {
  margin-right: 1px;
  margin-left: 5px;
}
*/
.btn-cancel {
  color: #999;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
}

.grid-amount {
  font-size: 13px;
  line-height: 1.1em;
  margin-top: -3px;
}

.discounts {
  margin-top: 10px;
  margin-left: 5px;
}

.logo {
  margin-top: 15px;
  margin-bottom: 10px;
  padding-top: 8px;
}

input-sm {
  max-width: 50px;
}

.form-control::-webkit-input-placeholder {
  font-size: 1em;
  padding-top: 1px;
  color: #b2b2b2;
}

.form-control {
  color: #222;
}

.form-control::-moz-placeholder { /* Firefox 19+ */
  font-size: 1em;
  color: #ddd;
}

.form-control:-ms-input-placeholder {
  font-size: 1em;
  color: #ddd;
}

.sublevel {
  margin-left: 30px;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

h1 {
  color: #666;
  font-size: 34px;
}

h2 {
  color: #e8a400;
  margin: 15px 0px;
  font-size: 26px;
}

p {
  font-family: 'Roboto', sans-serif;
  color: #666;
}

.btn {
  border-radius: 3px;
}

.btn.btn-primary {
  background-color: #f39a00;
  border-color: #f39a00;
  min-width: 180px;
  border-radius: 3px;
}

.btn-primary:active:focus, .btn-primary:hover, .btn-primary:active:hover
  {
  background: #da8a00;
  border-color: #da8a00;
}

.btn-gray {
  background: #eaeaea;
  border-color: #eaeaea;
}

.btn-gray:active:focus, .btn-gray:hover, .btn-gray:active:hover {
  background: #aaa;
  border: 1px solid #aaa;
  color: white;
}

.btn.btn-default {
  border-color: transparent;
}

.modal-footer.center-aligned {
	text-align: center;
}

.modal-footer.btn {
	background: #f7af33;
	border-color: transparent;
	border-radius: 28px;
	font-size: 20px;
	color: white;
    padding: 5px 70px 5px 70px;
}

.step.checked {
  background-image: url(../images/checked.png);
  display: inline-block;
  color: white;
  background-position: center center;
  background-repeat: no-repeat;
}

.step.checked span.number {
  display: none;
}

footer {
  margin-top: 25px;
  margin-bottom: 20px;
}

.icon-bar {
  margin-bottom: 15px;
}

.footer-image {
  margin: 5px 31px;
}

.spacer {
  width: 100%;
  display: block;
  clear: both;
  height: 12px;
}

.link-bar {
  margin-top: 2px;
}

.link-bar a {
  font-size: 19px;
}

.sideLogo {
  margin-bottom: 15px;
  margin-top: 5px;
}

.step-indicator {
  margin-top: 20px;
  margin-right: 0px;
}

.step {
  display: inline-block;
  vertical-align: top;
  border: 3px solid #e2e2e2;
  color: #ddd;
  border-radius: 50%;
  padding: 9px 11px 7px 12px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 23px;
  font-family: Roboto;
  width: 45px;
  height: 45px;
}

.tooltip {
  width: 260px;
  background: #000;
}

.line {
  height: 4px;
  width: 20px;
  margin-left: -2px;
  margin-right: -2px;
  background: #e2e2e2;
  border: 1px solid #e2e2e2;
  display: inline-block;
  margin-top: 22px;
  vertical-align: top;
}

.step.active {
  color: #F99E00;
}

.modal-content {
  border: 1px solid #eee;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 16px;
}

.btn.btn-default.home-skip {
  margin-top: 15px;
  padding: 10px 25px;
  background: #f0f0f0;
}

.medium-font {
  font-size: 14px;
  color: #aaa;
}

.promo-text {
  color: #e35e30;
  font-size: 16px;
  display: block;
  clear: both;
  font-size: .95em;
  margin-bottom: 7px;
}

.promo-section {
  padding-top: 10px;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-bottom: 10px;
  padding-right: 9px;
  width: auto;
  background: #fcfcfc;
  border: 1px solid #eee;
  float: left;
  clear: both;
}

.promo-section input {
  color: #222;
}

.glyphicon.medium-font {
  margin-right: 10px;
}

.total-section {
  /*  width: 100%;
  float: right; */
  background: #f9f9f9;
  text-align: right;
  /* clear: both; */
  }

.total-section .col-md-4 {
  padding: 0px;
  margin: 0px;
}

.subtotal-row {
  background: #efefef;
}

.total-row {
  backgorund: #eee;
}

.modal-header {
  background: #f9f9f9;
}

.modal-content h1 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.modal-body {
  width: 100%;
  height: 100%;
  display: block;
  border: 0px;
  clear: both;
  float: none;
  font-family: 'Roboto', sans-serif;
  color: #666;
  font-size: 16px;
}

.footer-bar {
	padding-top: 10px !important;
}

.footer p {
  margin-left: 25px;
}

.nav-pills {
  margin-bottom: 30px;
  border-bottom: 0px;
  margin-top: 20px;
}

.nav-pills li a {
  background: #efefef;
  font-size: 15px;
  padding-left: 25px;
  font-weight: bold;
  padding-right: 25px;
  min-width: 180px;
  border: 0px;
  border-radius: 0px;
  text-align: center;
  line-height: 18px;
}

.nav-pills li a:hover {
  background: #c8efff;
  color: #125d8d;
}

.nav-pills li.active a, .nav-pills li.active a:hover {
  background: #2A7DB3;
  color: white;
  font-weight: bold;
}

.textNoSelect {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

.subtext {
  font-size: 16px;
  line-height: 16px;
  margin-top: -10px;
  color: #666;
  padding-bottom: 15px;
}

.sameAs {
  border: 1px solid #f2f2f2;
  background: #f8f8f8;
  width: auto;
}

.half-size {
  width: 50%;
  display: inline-block;
}

.help-tip {
  margin-left: 8px;
}

.service-price {
  display: inline-block;
  margin-left: 10px;
  color: #0067b7;
}

.service-contract {
  display: inline-block;
  margin-left: 0px;
  color: #555;
  font-size: 18px;
  font-weight: 600;
  /*min-width: 190px;*/
}

.radio-group {
  width: 100%;
  clear: both;
  display: block;
  text-align: left;
  float: left;
}

.radio-group label.btn.btn-default {
  clear: both;
  display: block;
  font-size: 18px;
  color: #333;
  float: left;
  text-align: left;
  /*width: 380px;*/
  width: 424px;
  line-height: 20px;
  padding: 6px 20px 6px 0px;
  border-radius: 0px;
  background: #fdfdfd;
  box-shadow: none;
  border-color: #fdfdfd;
}

ul.description-bullets {
  margin-left: 0px;
  padding-left: 30px;
  margin-top: 8px;
  margin-bottom: 2px;
  font-size: 16px;
}

ul.description-bullets li {
  font-size: 16px;
  color: #666;
  line-height: 20px;
}

.radio-group label.btn.btn-default.active {
  background: #f4fbff;
}

.radio-group.level-service label.btn.btn-default {
  clear: none;
  width: 250px;
  display: block;
}

.radio-group input[type="radio"]:checked+label {
  background: #bbb !important;
}

.column-label {
  font-size: 16px;
}

.price.total, .total {
  font-size: 20px !important;
  font-weight: BOLD;
  background: #efefef;
  padding: 10px;
}

.numeric {
  text-align: right;
  /*padding-left: 0px;*/
}

.form-horizontal .control-label {
  color: #888;
}

.half-control {
  /*width: 30%;*/
  width: 45%;
  float: left;
  display: inline-block;
  margin-right: 10px;
}

.service-level {
  display: block;
  clear: both;
  /* padding-left: 31px; */
  color: #2574bc;
  margin-top: 1px;
}

.service-level-strikethrough {
  text-decoration: line-through;
  color: #888;
  font-size: 16px;
  padding-right: 4px;
}

.column-header {
  padding: 10px;
  color: #fff;
  font-size: 16px !important;
  background-color: #333;
}

.price {
  padding: 10px;
  font-size: 18px;
}

.discount-price {
  padding: 10px;
  font-size: 18px;
  color: #ff0000;
}

.label-cell {
  padding: 10px;
  font-size: 14px;
}

.device-grid {
  font-size: 16px;
}

.device-grid p {
  font-size: 16px;
  line-height: 16px;
  font-size: 15px;
  color: #666;
}

.device-grid h4 {
  font-size: 17px;
  font-weight: 600;
  color: #555;
  margin-top: 2px;
  padding: 0px;
  margin-bottom: 1px;
}

.grid-amount-bold {
  font-size: 18px;
  font-weight: 600;
  color: #555;
}

.device-grid .row {
  padding-top: 5px;
  padding-bottom: 5px;
}

.device-grid input.input-sm {
  width: 100%;
  max-width: 80px;
}

.spinner {
  width: 100px;
}

.spinner input {
  text-align: right;
}

.input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}

.input-group-btn-vertical>.btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin-left: -1px;
  position: relative;
  border-radius: 0;
}

.input-group-btn-vertical>.btn:first-child {
  border-top-right-radius: 4px;
}

.input-group-btn-vertical>.btn:last-child {
  margin-top: -2px;
  border-bottom-right-radius: 4px;
}

.input-group-btn-vertical i {
  position: absolute;
  top: 0;
  left: 4px;
}

.shipping {
  float: left;
  font-size: 17px;
}

.shipping-row-header{
	background-color: green;
    text-align: left;
    padding: 8px 0px;
    margin: 0px;
    font-size: 16px;
	color: #fff;
}

.shipping-row {
  border: 1px solid #eee;
  background: #fefefe;
  text-align: right;
  float: right;
  font-size: .9em;
}

.presentation-mode {
  font-size: 17px !important;
  color: #111 !important;
  Border: 0px !important;
  box-shadow: none !important;
}

.hiddenLabel {
  display: none;
}

.sub-text {
  display: block;
  clear: both;
  font-size: 13px;
  color: #777;
  margin-left: 30px;
}

a.edit-link {
  display: inline-block;
  padding-top: 5px;
  font-size: 13px;
  margin-left: 6px;
  margin-top: -5px;
}

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

button.edit-link, button.edit-link:focus, button.edit-link.active {
  display: inline-block;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 0;
  outline: none;
  color: #337ab7;
  padding: 5px 0px 0px 0px;
  font-size: 13px;
  margin-left: 6px;
  margin-top: -5px;
}

button.edit-link:hover {
  cursor: pointer;
  text-decoration: underline;
}

button.button-link, button.button-link:focus, button.button-link.active
  {
  display: inline-block;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 0;
  outline: none;
  color: #337ab7;
  padding: 5px 0px 0px 0px;
  font-size: 14px;
  margin-top: -5px;
}

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

.order-info h3 {
  font-size: 20px;
}

.order-row {
  width: 100%;
  display: block;
  word-wrap: break-word;
}

.terms-row {
  border: 1px solid #eee;
  background: #f6fcff;
  float: right;
  text-align: right;
  margin-top: 15px;
  /* margin-bottom: 15px; */
  padding-top: 5px;
}

.terms-clickable {
  font-weight: normal;
  text-align: left;
}

.terms-clickable input {
  margin-right: 8px;
}

.no-service-clickable {
  font-weight: normal;
  display: inline-block;
  margin: 5px 0px 0px 0px;
  font-size: 15px;
  color: #888;
}

.no-service-clickable input {
  /*float: left;
  margin-left: -20px;*/
  margin-right: 7px;
}
/*
.no-service-clickable input[type="checkbox"]:not(:checked){
	display: none;	
}
*/
.col-height {
  display: table-cell;
  float: none;
  height: 100%;
}

.col-bottom {
  vertical-align: bottom;
}

.single-service-header {
  color: #555;
  font-size: 18px;
  font-weight: 600;
}

.single-service-price {
  color: #5A5;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
}

.opaque {
  opacity: 0.33;
}

/*
select:required:invalid {
  color: #AAA;
}

.placeholder {
  color: red;
}

::-webkit-input-placeholder {
  color: red;
}

:-moz-placeholder {
  color: red;
  opacity:  1;
}

::-moz-placeholder {
  color: red;
  opacity:  1;
}

:-ms-input-placeholder {
  color: red;
}
*/

.ptop10{
  padding-top: 10px;
}

label {
  display: block;
  cursor: pointer;
  line-height: 19px;
}

.column-header-row {
  background: lightskyblue;
  padding: 8px 0px 4px 0px;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  border-radius: 5px;
  /* margin-left: 1px; */
}

.column-bold {
  font-size: 17px;
  padding-left: 5px;
  margin: -2px 0px 3px 0px;
}

.device-grid .service-level {
  margin-top: 2px;
  margin-bottom: 2px;
  padding-left: 0px;
}

input.form-control[disabled] {
  background: #fefefe;
  border: 0px;
  color: #111;
  cursor: auto;
}

.complete {
  border-radius: 5px;
  background: #50C044;
  padding: 4px 5px;
  text-align: center;
  width: 100%;
  clear: both;
  display: block;
  color: white;
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
}

.no-padding {
  padding: 0px;
  margin-left: 0px;
}

.add-on-item-row {
  background: #eeeeee;
}

.add-on-item-label {
  background: #555555;
  color: white;
  padding: 2px 8px;
  border-radius: 7px;
  font-size: 12px;
}

.terms-header{
	margin: 0px 0px 10px 0px;
}

.device-grid .row{
	/* margin-left: 0px; */
}

.tile-padding .img-responsive{
	margin: auto;
}

.monthly-promo{
	font-size: 14px;
	padding-left: 15px !important;
    line-height: 1.25;
}

.service-header{
	padding-left: 0px;
}

#addressAmbiguous .order-row, #addressInvalid .order-row{
	font-weight: bold;
}

#addressAmbiguous button, #addressInvalid button{
	margin: 5px 0px 15px 0px;
}

#customerLogin .modal-body button{
	height: 50px;
    font-size: 18px;
}

#customerLogin .modal-body{
	padding-bottom: 0px;
}

#customerLogin .modal-footer button{
    font-size: 16px;
}

#customerLogin .form-control{
	font-size: 17px;
}

.terms-row, .shipping-row{
	/* margin-left: 0px; */
	/* margin-right: 0px; */
}

.shippingDelivery{
	display: block;
    margin-left: 28px;
    font-size: 14px;
    color: green;
}

#shippingGroundPrice, #shippingTwoDayPrice, #shippingNextDayPrice, #shippingFreePrice{
	float: right;
}

/*
@media (max-width: 595px) {
	.container, .card{
		padding: 0px !important;
	}
	.footer-buttons.text-right{
		padding: 0px 15px 30px 10px !important;
	}
}
*/
@media (min-width: 994px) {
	.device-grid input.input-sm{
		float: right;
		max-width: 55px;
		margin-right: -6px;
	}
	.edit-link.visible-md.visible-lg{
		clear: both;
		float: right;
		width: 70px;
	}
}

.column-header.dueToday.price {
    padding-left: 0px;
    padding-right: 0px;
}

.column-header.monthlyService.price {
    padding-left: 5px;
    padding-right: 10px;
}

.address-title{
	font-size: 18px;
}

.pdtop{
  margin-top: 15px;
}

.address-edit{
	font-size: smaller;
}

.hr-address{
	margin: 5px 0px 15px 0px;
}

.talc{
  text-align: center;
  min-width: 50px !important;
  padding: 0px !important;
}

.totalinv{
  font-size: 16px;
  color: white;
}

.fix-radio{
  width: inherit !important;
}

.fixtradio{
  display: inline !important;
}

.hidden{
  visibility: hidden;
}
.form-check-label{
  font-size: 12px !important;
}

.form-horizontal .control-label {
  color: #888;
}


.half-control {
  /* width: 30%; */
  width: 45%;
  float: left;
  display: inline-block;
  margin-right: 10px;
}