﻿@charset "UTF-8";
/*------------------------------------*\
  #MAIN
\*------------------------------------*/
/**
 * CONTENTS
 *
 * SETTINGS
 * All..................Because our Settings layer doesn’t actually produce any
 *                      CSS, we can safely glob all of the files into one import
 *                      without risk of bloating our compiled stylesheet.
 *                      Please see `settings/_all.scss` for a full table of
 *                      contents.
 *
 * TOOLS
 * All..................Because our Tools layer doesn’t actually produce any
 *                      CSS, we can safely glob all of the files into one import
 *                      without risk of bloating our compiled stylesheet. This
 *                      also allows us to easily recycle all of our
 *                      project-level tooling into other Sass file/projects.
 *                      Please see `tools/_all.scss` for a full table of
 *                      contents.
 *
 * OBJECTS
 * Wrappers.............Wrappers and page constraints.
 * Headline.............Simple object for structuring heading pairs.
 * List-bare............Lists with no bullets or indents.
 * List-inline..........Simple abstraction for setting lists out in a line.
 *
 * COMPONENTS
 * Breadcrumbs..........Breadcrumbs nav styles.
 * Buttons..............Button styles.
 * Card.................Simple card layout.
 * Headline.............Basic heading style for generic headlines.
 * Graph................Usage Graph Styles.
 *
 * UTILITIES
 * Debt.css.............Short-term hacks and quick-fixes.
 * Headings.............Reassigning our heading styles to helper classes.
 */
/** Background Colors */
/** Border Colors */
/** Text Colors */
/** Link Colors */
/** Button colors */
/** Font Stack */
/** Productive Sizes */
/** Expressive Sizes */
/** Line heights */
/** Exception Sizes */
/** Font weights */
/** The base body size */
/** Heading sizes */
/*------------------------------------*\
  #GRID
\*------------------------------------*/
@media (min-width: 768px) {
  .o-grid--left {
    width: 64%;
    float: left;
  }
}
@media (min-width: 992px) {
  .o-grid--left {
    width: 71%;
    float: left;
  }
}

@media (min-width: 768px) {
  .o-grid--right {
    width: 33%;
    float: right;
  }
}
@media (min-width: 992px) {
  .o-grid--right {
    width: 26%;
    float: right;
  }
}

.o-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .o-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .o-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .o-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .o-container {
    max-width: 1140px;
  }
}
.o-container--no-gutters {
  padding-right: 0;
  padding-left: 0;
}

/*------------------------------------*\
  #WRAPPERS
\*------------------------------------*/
/*------------------------------------*\
  #HEADLINE
\*------------------------------------*/
.c-btn-group__item, .o-expressive-summary, .o-display-heading-sm, .o-heading-xxl, .o-heading-xl, .o-heading-lg, .o-heading-md, .o-heading-sm, .o-heading-xs {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 400;
  color: #445968;
  text-transform: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.o-heading-sm--label {
  color: #008380;
}

.o-heading-xxl--success {
  /*this will be refactored when main-responsive is resolve , its to override the h1 font color property  */
  color: #009135 !important;
}

.o-heading-xxl--alert {
  color: #c1381b;
}

/* Utilitarian Headings - Used for Application Layout */
/*Styles not coupled with HTML layout. Do not confuse it
with styles based on h1 to h6 */
.o-heading-xxs {
  color: #213848;
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.o-heading-xs {
  font-size: 16px;
}

.o-heading-sm {
  font-size: 18px;
}

.o-heading-md {
  font-size: 20px;
  font-weight: 600;
  color: #213848;
  padding-bottom: 16px;
}

.o-heading-lg {
  font-size: 22px;
  font-weight: 600;
  color: #213848;
}

.o-heading-xl {
  font-size: 22px;
}
@media (min-width: 768px) {
  .o-heading-xl {
    font-size: 26px;
  }
}

.o-heading--dark {
  color: #213848;
}

.o-heading--semi-bold {
  font-weight: 600;
}

/***heading with different color and line heightalso where the size is different in mobile and desktop**/
.o-heading-xxl {
  /*this will be refactored when main-responsive is resolve , its to override the h1 font size on mobile view */
  font-size: 32px !important;
  color: #213848;
  font-weight: 300;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .o-heading-xxl {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

/* Expressive Headings - Used for Copy Layout */
.o-display-heading-sm {
  font-size: 36px;
  font-weight: 300;
  color: #213848;
  padding-bottom: 16px;
}

.o-expressive-summary {
  text-transform: none;
  font-size: 18px;
  color: #008380;
  font-weight: 600;
}

/*Color class for heading - These were later renamed by spartans as per UX recommendation*/
.o-color--teal50 {
  color: #008380;
}

.o-color--brightGreen60 {
  color: #009135;
}

.o-color--red60 {
  color: #c1381b;
}

.o-color--blue80 {
  color: #144870;
}

/* class modifiers for heading as per UX recommendations*/
/*------------------------------------*\
  #LINKS
\*------------------------------------*/
a.o-links, .o-link--small, .o-link {
  font-weight: 600;
  color: #0e75c4;
  margin-bottom: 0;
  cursor: pointer;
}

.o-link--disabled {
  color: #9dacb6;
  pointer-events: none;
}

.o-link--light {
  font-weight: 600;
  color: #0e75c4;
  font-size: 16px;
  display: block;
  margin: 8px 0 0 0;
}

.o-link--small:hover, .o-link--light:hover {
  text-decoration: underline;
  color: #0e75c4;
  cursor: pointer;
}

a.o-links:hover, .o-link:hover {
  text-decoration: underline;
  font-weight: 600;
  color: #128ddd;
}

@media (min-width: 768px) {
  .o-link--light {
    display: inline;
    margin: 0;
  }
}

.o-link--small {
  font-size: 16px;
}

.o-link--large {
  font-size: 18px;
}
@media (min-width: 768px) {
  .o-link--large {
    font-size: 16px;
  }
}

.o-link-style--pointer {
  cursor: pointer;
}

/*------------------------------------*\
  #LIST-BARE
\*------------------------------------*/
.o-list-bare {
  list-style: none;
  margin-left: 0;
}

/*------------------------------------*\
  #LIST-INLINE
\*------------------------------------*/
.o-list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.o-list-inline__item {
  display: inline-block;
}

/*------------------------------------*\
  #ALERTS and #alerts for Service messages 
\*------------------------------------*/
.c-alert {
  font-size: 14px;
  font-weight: 600;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border: 1px solid #fff;
  padding: 8px 8px 0 10px;
  background-image: url();
  background-repeat: no-repeat;
  background-position: 12px 50%;
}

.c-alert__text {
  padding-left: 24px;
}

.c-alert--high {
  background-image: url(images/icons/icon-alert-high.svg);
  background-color: #fdeeea;
  color: #c1381b;
}

.c-alert--mid {
  background-image: url(images/icons/icon-alert-mid.svg);
  background-color: #fdf2ea;
  color: #c66214;
}

.c-alert--low {
  background-color: #e7f2ee;
  color: #007749;
}

.c-alert--info {
  background-image: url(images/icons/icon-alert-info.svg);
  background-color: #e9f6fc;
  color: #4E738D;
}

.c-message {
  font-size: 14px;
  font-weight: 600;
  background-color: #fdf2ea;
  color: #c66214;
  padding: 16px;
  margin: 4px;
  border-radius: 3px;
}

.c-message_text {
  color: #c66214;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.c-service-alert--high {
  border: 2px solid #f9ccc2;
  background-color: #fdeeea;
  border-radius: 3px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .c-service-alert--high {
    margin-top: 0;
  }
}

.c-service-alert--low {
  border: 2px solid #ebebeb;
  background-color: rgba(235, 235, 235, 0.3);
  border-radius: 3px;
  color: #687782;
  font-size: 12px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .c-service-alert--low {
    margin-top: 0;
  }
}

.c-service-alert--normal {
  border: 2px solid #b9e9ca;
  background-color: #e7f7ed;
  border-radius: 3px;
  color: #007129;
  font-size: 12px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .c-service-alert--normal {
    margin-top: 0;
  }
}

.c-service-message {
  background-color: #fff;
  margin: 0 0 0 45px;
  padding: 16px;
  height: 100%;
}

.c-service-message-list {
  padding-left: 24px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  line-height: 21px;
  margin-bottom: 0;
}
.c-service-message-list li {
  margin-bottom: 8px;
}

.c-service-message-text {
  font-size: 14px;
  color: #213848;
}
.c-service-message-text p {
  margin-bottom: 0;
}

/*service message box for stopping the service */
.c-service-stop {
  margin-bottom: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .c-service-stop {
    width: 390px;
    margin-bottom: 16px;
  }
}
.c-service-stop .c-service-alert--high {
  margin-top: 0;
}

.c-icon-alert--red {
  background-image: url(images/icons/icon-alert--red.svg);
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 24px;
}

/*------------------------------------*\
  #BADGES
\*------------------------------------*/
.c-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  padding: 4px 7px 3px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #faa713;
  position: absolute;
  top: -4px;
  left: -6px;
}

.c-badge:empty {
  display: none;
}

/*------------------------------------*\
  #BREADCRUMBS
\*------------------------------------*/
.c-breadcrumbs {
  font-size: 14px;
  list-style: none;
  padding-inline-start: 0;
  padding-left: 0;
  margin: 0;
}

.c-breadcrumbs__item {
  display: inline-block;
  font-weight: 700;
}

.c-breadcrumbs__item--active {
  font-weight: 400;
}

.c-breadcrumbs__item + .c-breadcrumbs__item:before {
  font-weight: 400;
  padding: 0 5px;
  color: #687782;
  content: "/ ";
}

/*------------------------------------*\
  #BUTTON GROUP
\*------------------------------------*/
.c-btn-group {
  display: inline-block;
  margin-bottom: 16px;
}

.c-btn-group__item {
  color: #0e75c4;
  background-color: #fff;
  border-radius: 3px;
  border: 1px #128ddd solid;
  float: left;
  min-width: auto;
  text-shadow: none;
  padding: 4px 16px;
  font-size: 14px;
  line-height: 1.5;
  touch-action: manipulation;
}

.c-btn-group__item:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.c-btn-group__item:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.c-btn-group__item.btn.btn-primary:hover {
  background-color: #e9f6fc;
  color: #0e75c4;
  border-color: #0e75c4;
  outline: 0;
}

.c-btn-group__item.btn-primary.active {
  color: #fff;
  background-color: #109de7;
  border-color: #128ddd;
}

.c-btn-group__item.btn-primary.active:hover {
  color: #fff;
  background-color: #109de7;
  border-color: #128ddd;
}

/*------------------------------------*\
  #BUTTONS
\*------------------------------------*/
/** Master Button Styles**/
.c-btn {
  display: block;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  padding: 8px 16px; /**Matching the padding with the prototype*/
  border-radius: 3px;
  transition: 0.333333333s;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: 0;
  line-height: 1.5; /*Applying the standard line height as declared in typography settings as the previous line height is causing issue in iPhone*/
}
@media (min-width: 768px) {
  .c-btn {
    width: auto;
    min-width: 180px;
  }
}

/** Primary Button **/
.c-btn--primary {
  background-color: #109de7;
  box-shadow: 0 2px 0 0 #0e75c4;
}

.c-btn--primary:hover {
  background-color: #128ddd;
  box-shadow: 0 2px 0 0 #1063a2;
}

/** Secondary Button **/
.c-btn--secondary {
  background-color: #1063a2;
  box-shadow: 0 2px 0 0 #144870;
}

.c-btn--secondary:hover {
  background-color: #1063a2;
  box-shadow: 0px 2px 0px 0px #03243d;
  color: #fff;
  text-decoration: none;
}

/**Tertiary Button**/
.c-btn--tertiary {
  background-color: #fff;
  padding: 8px;
  border: 1px solid #109de7;
  font-size: 18px;
  color: #0e75c4;
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin: 8px 0;
}
.c-btn--tertiary:hover {
  box-shadow: 0px 0px 3px 1px #128ddd;
  color: #128ddd;
}
.c-btn--tertiary:active {
  background-color: #128ddd;
  color: #fff;
  border: 2px solid #92d2f4;
}
@media (min-width: 768px) {
  .c-btn--tertiary {
    width: auto;
    min-width: 140px;
    margin-right: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.c-btn-tertiary--active {
  box-sizing: border-box;
  background-color: #128ddd;
  color: #fff;
  border: 2px solid #92d2f4;
  border-radius: 3px;
}
.c-btn-tertiary--active:hover {
  box-shadow: none;
  color: #fff;
}

a.c-btn--secondary:hover, a.c-btn--secondary:focus {
  color: #fff;
}

.c-btn--disabled {
  color: #9dacb6;
  background-color: #dbdee0;
  box-shadow: 0px 2px 0px 0px #c4cdd4;
  cursor: not-allowed;
}

/** Utility Button **/
.c-utility-btn {
  display: inline-block;
  font-size: 14px;
  color: #445968;
  border-radius: 18px;
  padding: 8px 10px;
  background-color: #dbdee0;
  box-shadow: inset 0 -1px 0 0 #fff, inset 0 2px 0 0 rgba(33, 56, 72, 0.15);
  position: relative;
  font-weight: 600;
  text-align: center;
  width: auto;
}

.c-utility-btn--collapsible {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  padding: 9px 0 0 0;
}
@media (min-width: 768px) {
  .c-utility-btn--collapsible {
    min-width: 118px;
    width: auto;
    height: auto;
    border-radius: 18px;
    padding: 8px 10px;
  }
}

.c-utility-btn:hover {
  color: #213848;
  text-decoration: underline;
}

.c-utility-btn:first-child {
  margin-right: 4px;
}

@media (min-width: 768px) {
  .c-utility-btn__icon {
    padding-right: 8px;
  }
}

/************Creating button size *******************/
.c-btn--medium {
  width: 258px;
}

/*------------------------------------*\
  #BACKGROUNDS
\*------------------------------------*/
.c-background--blue00 {
  background-color: #e9f6fc;
}

/* We're hiding fieldset cause it's hard to style properly */
.c-choice-checkbox {
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.c-choice-radio {
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

/* We're hiding the legend but a screenreader will read the description */
.c-choice-checkbox__legend {
  position: absolute;
  left: -9999px;
  width: 100px;
  height: auto;
  overflow: hidden;
}

.c-choice-checkbox__wrapper {
  border-radius: 4px;
  background-color: #e9f6fc;
  font-size: 22px;
  color: #213848;
  width: 100%;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .c-choice-checkbox__wrapper {
    width: 373px;
  }
}

.c-choice-radio__wrapper {
  border-radius: 4px;
  background-color: #e9f6fc;
  font-size: 22px;
  color: #213848;
  width: 100%;
}
@media (min-width: 768px) {
  .c-choice-radio__wrapper {
    width: 373px;
  }
}

.c-choice-checkbox__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.c-choice-radio__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.c-choice-checkbox__checkbox-wrapper {
  padding: 0;
  margin: 0;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 3px;
  padding-bottom: 8px;
}

.c-choice-radio__radio-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 7px;
  padding-bottom: 16px;
  position: relative;
  left: 11px;
}

.c-choice-checkbox__label > .c-icon-electric--blue {
  background-position: left 16px bottom 11px;
}
@media (max-width: 321px) {
  .c-choice-checkbox__label > .c-icon-electric--blue {
    background-position: left 16px bottom 41px;
  }
}

.c-choice-checkbox__label > .c-icon-gas--blue {
  background-position: left 13px bottom 14px;
}

/* Styles for hiding the native checkbox */
.c-choice-checkbox__input {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Styles for the basic appearance of the custom checkbox */
.c-choice-checkbox__check-toggle {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid #80909b;
  border-radius: 4px;
  background-color: #fff;
}

/* Styles for the hover state appearance of the custom checkbox */
.c-choice-checkbox__input:hover ~ .c-choice-checkbox__check-toggle {
  background-color: #fff;
}

/* Styles for the focus state appearance of the custom checkbox */
.c-choice-checkbox__input:focus ~ .c-choice-checkbox__check-toggle {
  box-shadow: 0 0 0 2px #61bef0;
}

.c-choice-checkbox__check-toggle:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*TBD Styles for the focus state appearance of the custom radio button */
/* Styles for the checked state appearance of the custom checkbox */
input.c-choice-checkbox__input:checked ~ .c-choice-checkbox__check-toggle {
  background-color: #109de7;
  border: 2px solid #109de7;
}
input.c-choice-checkbox__input:checked ~ .c-choice-checkbox__check-toggle:after {
  display: block;
}

.c-choice-checkbox__copy {
  border-left: 8px solid #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 40px;
  padding-right: 10px;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
}
.c-choice-checkbox__copy span {
  font-size: 18px;
  color: #445968;
  font-weight: 400;
  padding-left: 8px;
}
@media (min-width: 321px) and (max-width: 410px) {
  .c-choice-checkbox__copy span {
    padding-left: 0;
  }
}

.c-choice-radio_copy {
  border-left: 8px solid #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* Hide the browser's default radio button */
.c-choice-radio__label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #80909b;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.c-choice-radio__label input:hover input ~ .radio-checkmark {
  background-color: #fff;
  border: 2px solid #128ddd;
}

/* When the radio button is checked, add a blue background */
.c-choice-radio__label input:checked ~ .radio-checkmark {
  background-color: #fff;
  border: 2px solid #128ddd;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.c-choice-radio__label input:checked ~ .radio-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.c-choice-radio__label .radio-checkmark:after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #128ddd;
}

/******************Disabled Component******************************/
.c-disable-checkbox_wrapper {
  border-radius: 4px;
  background-color: #E9ECEE; /**this is not part of the color system but mention is the prototype have raised UI query for the same**/
  font-size: 22px;
  color: #213848;
  width: 100%;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .c-disable-checkbox_wrapper {
    width: 373px;
  }
}
.c-disable-checkbox_wrapper .c-icon-gas--disable {
  background-position: left 13px bottom 12px;
}
.c-disable-checkbox_wrapper .c-icon-electric--disable {
  background-position: left 13px bottom 10px;
}

.c-disable-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.c-disable-icon_wrapper {
  padding: 0;
  margin: 0;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 3px;
  padding-bottom: 8px;
}

/*------------------------------------*\
  #CARD
\*------------------------------------*/
/** Card Shell Layout */
.upload-u-urgent-msg-card, .u-no-acct-card, .u-urgent-msg-card, .u-acct-card, .u-aside-card, .c-card {
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 24px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.c-content--dark, .c-content {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  margin-right: 8px;
  margin-bottom: 5px;
}

.c-inner-card {
  border-radius: 8px;
  margin-bottom: 32px;
  border: 2px solid #e7f3f3;
  padding: 16px;
}
@media (min-width: 768px) {
  .c-inner-card {
    padding: 24px;
    margin-bottom: 40px;
  }
}

.c-inner-card--dotted {
  border-radius: 4px;
  border: 2px dotted #b9dddc;
  padding: 24px;
}

.c-inner-card--modified {
  border-radius: 8px;
  margin-bottom: 32px;
  border: 1px solid #e7f3f3;
  padding: 16px;
}
@media (min-width: 768px) {
  .c-inner-card--modified {
    padding: 8px;
    margin-bottom: 40px;
  }
}

.c-inner-card--content {
  padding: 0 0 16px 0;
}
@media (min-width: 768px) {
  .c-inner-card--content {
    padding: 16px;
  }
}

.c-title {
  font-size: 16px;
  font-weight: 600;
  color: #213848;
  line-height: 1.5;
}

.c-content {
  color: #2f4656;
}

.c-content--dark {
  color: #213848;
}

/*------------------------------------*\
  #CARD
\*------------------------------------*/
.c-card-box {
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #fff;
  margin-bottom: 16px;
  border: 2px solid #61bef0;
  display: block;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .c-card-box {
    order: 0;
    flex-grow: 1;
    margin-right: 45px;
    -ms-flex: 1 1 0px; /*  IE10 fix  */
    -webkit-flex: 1 1 0; /*  changed  */
    flex: 1;
    width: 100%;
    text-align: center;
  }
}

.c-tile-container {
  padding: 16px;
}
@media (min-width: 768px) {
  .c-tile-container {
    padding: 40px;
  }
}

.c-card-box {
  text-decoration: none;
}

.c-box-container {
  display: block;
}
.c-box-container a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-box-container {
    display: flex;
    flex-direction: row;
    max-width: 732px;
  }
}

.c-box-item {
  display: block;
  border: 2px solid #e9f6fc;
  border-radius: 6px;
  box-sizing: border-box;
}
.c-box-item .c-box {
  padding: 16px;
}
@media (min-width: 768px) {
  .c-box-item .c-box {
    padding: 24px;
  }
}

.c-title-container {
  display: flex;
  align-items: center;
}
.c-title-container a {
  text-decoration: none;
  color: #1063a2;
}
@media (min-width: 768px) {
  .c-title-container {
    display: block;
  }
}

.c-box-title {
  font-size: 18px;
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  text-transform: none;
  color: #1063a2;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .c-box-title {
    font-size: 22px;
    padding-top: 16px;
  }
}

.c-box-title--regular {
  font-size: 20px;
  font-weight: 400;
  display: block;
}
@media (min-width: 768px) {
  .c-box-title--regular {
    font-size: 22px;
  }
}

.c-icon--left {
  width: 70px;
}
@media (min-width: 768px) {
  .c-icon--left {
    float: left;
    margin-right: 16px;
    width: 100px;
  }
}

.c-box--blue {
  padding: 24px 24px 48px 24px;
  background-color: #e9f6fc;
}
@media (min-width: 768px) {
  .c-box--blue {
    padding: 48px 40px 48px 40px;
  }
}

.c-box-blue--title {
  padding-top: 4px;
  margin-left: 16px;
}
.c-box-blue--title a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-box-blue--title {
    display: inline-block;
    margin-left: 0;
    font-size: 22px;
  }
}

.c-box-blue--bar {
  min-height: 16px;
  background: rgba(233, 246, 252, 0.4);
}

/*------------------------------------*\
  #DROPDOWN 
\*------------------------------------*/
.c-dropdown-container {
  padding: 24px 24px 0;
  padding-bottom: 4px;
}

.c-dropdown-container #SelectButton2 {
  font-size: 16px;
  font-weight: 600;
  background-color: #dbdee0;
  border: 0;
  border-radius: 3px;
  width: 100%;
  box-shadow: 0 2px 0 0 #9dacb6 !important;
  text-align: left;
  padding: 8px !important;
}

.c-dropdown-container .bootstrap-select.btn-group .dropdown-toggle .caret {
  border-left: 0;
}

.c-dropdown-container .bootstrap-select.btn-group .dropdown-toggle .caret:after {
  content: "\f0d7";
  display: block;
  font-family: "FontAwesome";
  margin-top: 6px;
  text-align: center;
  color: #000;
}

.c-dropdown-container .bootstrap-select .dropdown-toggle:focus {
  outline: 0 !important;
}

.c-dropdown-container .bootstrap-select.btn-group .dropdown-menu.open {
  font-size: 14px;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 4px;
  border: 0;
  border-radius: 3px;
  width: 100%;
  background-color: #ebebeb;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  margin-top: 4px;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
  background-color: #ebebeb;
}

.c-dropdown-container .bootstrap-select.btn-group .dropdown-menu li a {
  color: #213848;
  font-weight: 600;
  display: block;
  padding: 8px 16px;
  margin-bottom: 4px;
}

.c-dropdown-container--secondary .btn {
  font-size: 16px !important;
  line-height: 1.5;
  color: #80909b;
  width: 100%;
  height: 52px;
  border: 1px solid #80909b;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: inset 0 -4px 0 0 #ebebeb !important;
}
@media (min-width: 768px) {
  .c-dropdown-container--secondary .btn {
    height: 44px;
  }
}

/**Putting not important because the main.css is overriding with !important */
.c-dropdown-container--secondary .btn .btn-select {
  box-shadow: inset 0 -4px 0 0 #ebebeb !important;
}

.c-dropdown-container--secondary span .bootstrap-select.btn-group .dropdown-toggle .caret {
  border-left: 0;
}

.c-dropdown-container--secondary.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  vertical-align: middle;
  border: none;
  border-left: 0;
  color: #109de7;
  display: block;
  margin-top: -16px;
  height: 100%;
  min-height: 15px;
  width: 15px;
}

.c-dropdown-container--secondary .dropdown-toggle:focus {
  outline: 0 !important;
  border: 1px solid #0e75c4;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu.inner {
  background-color: #fff;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid #dbdee0;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li:hover {
  background-color: #e9f6fc;
  border: 1px solid #bde4f8;
}
.c-dropdown-container--secondary.btn-group .dropdown-menu li:hover a span.text {
  color: #1063a2;
  text-transform: lowercase;
}

.c-dropdown-container--secondary.btn-group .dropdown-toggle .filter-option {
  text-transform: lowercase;
}
.c-dropdown-container--secondary.btn-group .dropdown-toggle .filter-option:first-letter {
  text-transform: uppercase;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li:first-child {
  border-top: 1px solid #dbdee0;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li:last-child {
  border-bottom: 0;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li a:hover, .c-dropdown-container--secondary.btn-group .dropdown-menu li a:focus {
  text-decoration: none;
  background-color: transparent;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li a span.text {
  display: inline-block;
  font-size: 16px;
  color: #445968;
  text-transform: lowercase;
}
.c-dropdown-container--secondary.btn-group .dropdown-menu li a span.text:first-letter {
  text-transform: uppercase;
}

/*To Override the mobile styles by main.css*/
.c-dropdown-container--secondary.btn-group.open .caret:after {
  content: "\f078";
}

.c-dropdown-container--secondary > select.mobile-device {
  width: 0 !important; /**From main.css the with is getting 100% which is creating issue on mobile , need to refactor it later*/
  top: auto;
  left: auto;
  display: inline !important;
}

.c-dropdown-container--secondary > .btn-select {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-size: 16px !important;
}

.c-state--selected {
  color: #213848;
}

/*------------------------------------*\
  #Datepicker

    In the below style we are overriding the styles of the datepicker plugin hence cannot use naming convention of the class comonent stating from"c"
\*------------------------------------*/
.c-date {
  position: relative;
}

.c-date-icon {
  background-image: url(images/icons/icon-calendar--blue.svg);
  background-repeat: no-repeat;
  background-position: right 7px bottom 12px;
  background-size: 16px;
}

.c-date-section {
  padding: 0;
}
@media (min-width: 768px) {
  .c-date-section {
    padding: 16px;
  }
}

.c-date-input {
  font-size: 18px;
  line-height: 1.5;
  color: #445968;
  padding-left: 16px;
  width: 100%;
  height: 45px;
  border: 1px solid #80909b;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: inset 0 4px 0 0 #ebebeb;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-date-input {
    width: 200px;
    font-size: 16px;
  }
}

.datepicker table {
  width: 300px;
  height: 300px;
}

.datepicker .next {
  color: #128ddd;
}

.datepicker .prev {
  color: #128ddd;
}

.datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .open .dropdown-toggle.datepicker table tr td.active, .open .dropdown-toggle.datepicker table tr td.active:hover, .open .dropdown-toggle.datepicker table tr td.active.disabled, .open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  background-image: none;
}

/*********selected Date******/
.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:focus, .datepicker table tr td.active:hover:focus, .datepicker table tr td.active.disabled:focus, .datepicker table tr td.active.disabled:hover:focus, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .open .dropdown-toggle.datepicker table tr td.active, .open .dropdown-toggle.datepicker table tr td.active:hover, .open .dropdown-toggle.datepicker table tr td.active.disabled, .open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  color: #fff;
  background-color: #128ddd;
  border-color: #128ddd;
}

/**Hover Date todays date*/
.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
  background-color: transparent;
  border-color: transparent;
}

.datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
  background-color: #dbdee0;
}

.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
  color: #445968;
  background-color: #dbdee0;
  border-color: #dbdee0;
}

.datepicker table tr td.today:hover, .datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus, .datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus, .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active, .datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:hover.active, .open .dropdown-toggle.datepicker table tr td.today, .open .dropdown-toggle.datepicker table tr td.today:hover, .open .dropdown-toggle.datepicker table tr td.today.disabled, .open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
  background-color: #dbdee0;
}

.dropdown-menu {
  font-size: 16px;
}

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
  padding: 7px;
}

/*------------------------------------*\
  #Ui-auto-complete

    In the below style we are overriding the styles of the ui-autocomplete plugin hence cannot use naming convention of the class comonent stating from"c"
\*------------------------------------*/
/*****Classes to override the styling of the jQuery -ui for ui-autocomplete **/
.ui-menu {
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.ui-menu .ui-menu-item {
  border-top: 1px solid #dbdee0;
}

.ui-menu .ui-menu-item :hover {
  background-color: #e9f6fc;
  color: #1063a2;
  border-radius: 0;
  cursor: pointer;
}

.ui-menu .ui-menu-item a {
  padding: 8px 16px;
}

.ui-widget-content {
  border: 1px solid #dbdee0;
  background: #fff;
  color: #445968;
  font-family: "Open Sans";
  font-size: 16px;
}

.ui-widget-content a {
  color: #445968;
  font-family: "Open Sans";
  font-size: 16px;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  border: none;
  background: none;
  font-weight: normal;
  color: #445968;
}

.ui-autocomplete {
  width: 275px;
  height: auto;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .ui-autocomplete {
    width: 325px;
    height: auto;
    overflow-y: hidden;
  }
}

/*------------------------------------*\
  #ICONS
\*------------------------------------*/
.c-icon {
  display: inline-block;
}

.c-icon-transfer--label {
  background-image: url(images/icons/icon-transfer--label.svg);
  background-repeat: no-repeat;
  background-position: left bottom 6px;
  background-size: 12px 10px;
}

.c-icon-edit {
  background-image: url(images/Icons/icon-edit.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  height: 12px;
  width: 12px;
}

.c-icon-checkmark {
  display: inline-block;
  position: relative;
}

.c-icon-checkmark--xl {
  width: 80px;
}

.c-icon-red-alert--xl {
  width: 80px;
}

.c-icon-checkmark--large {
  background-image: url(images/Icons/icon-checkmark--large.svg);
  background-repeat: no-repeat;
  background-size: 60px 60px;
  height: 60px;
  width: 60px;
}

.c-icon-rightarrow--teal {
  background-image: url(images/Icons/icon-rightarrow--teal.svg);
  background-repeat: no-repeat;
  background-size: 27px 18px;
  background-position: center;
}

.c-icon-downarrow--teal {
  background-image: url(images/Icons/icon-downarrow--teal.svg);
  background-repeat: no-repeat;
  background-size: 18px 27px;
  background-position: center;
}

.c-icon-info--gray {
  background-image: url(images/Icons/icon-info--gray.svg);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: left 10px center;
}

.c-icon-leaf--green {
  background-image: url(images/Icons/icon-leaf--green.svg);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: left 10px center;
}

.c-icon-stop--label {
  background-image: url(images/icons/icon-stop--label.svg);
  background-repeat: no-repeat;
  background-position: left bottom 4px;
  background-size: 14px 14px;
}

.c-icon-start--label {
  background-image: url(images/icons/icon-start--label.svg);
  background-repeat: no-repeat;
  background-position: left bottom 4px;
  background-size: 14px 14px;
}

.c-icon-electric--blue {
  background-image: url(images/icons/icon-electric--blue.svg);
  background-repeat: no-repeat;
  background-position: left 16px bottom 15px;
  background-size: 10px 20px;
}

.c-icon-gas--blue {
  background-image: url(images/icons/icon-gas--blue.svg);
  background-repeat: no-repeat;
  background-position: left 16px bottom 17px;
  background-size: 16px 20px;
}

.c-icon-alert--red {
  background-image: url(images/icons/icon-alert--red.svg);
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 24px;
}

.c-icon-linkarrow-blue40 {
  background-image: url(images/icons/icon-linkarrow-blue40.svg);
  background-repeat: no-repeat;
  background-size: 17px 22px;
}

.c-icon-link {
  background-position: right;
  display: inline-block;
  height: 17px;
  width: 22px;
  position: relative;
  right: 0;
  top: 3px;
}
@media (min-width: 768px) {
  .c-icon-link {
    right: 0;
    top: 3px;
  }
}

.c-icon-openwindow {
  background-image: url(images/icons/icon-openwindow.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.c-icon-oval {
  width: 70px;
  height: 70px;
  cursor: pointer;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .c-icon-oval {
    width: 100px;
    height: 100px;
  }
}

.c-search-icon {
  background-image: url(images/icons/icon-search--disabled.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;
  background-size: 20px 20px;
  position: absolute;
  height: 30px;
  width: 40px;
  right: 3px;
  top: 2px;
}
@media (min-width: 768px) {
  .c-search-icon {
    right: 7px;
    top: 1px;
  }
}

.c-icon--disable {
  height: 18px;
  width: 18px;
}

.c-icon-gas--disable {
  background-image: url(images/icons/gas-disabled.svg);
  background-size: 16px 22px;
  background-repeat: no-repeat;
}

.c-icon-electric--disable {
  background-image: url(images/icons/electric-disabled.svg);
  background-size: 16px 22px;
  background-repeat: no-repeat;
}

/****Tricolor background img*****/
.c-icon--tricolor {
  height: 4px;
  width: 100%;
  background-image: linear-gradient(to right, #128ddd 0%, #128ddd 33.3333%, #2ebf62 33.3333%, #2ebf62 66.6666%, #007749 66.6666%);
}

.c-header__logo--medium {
  padding: 32px 40px;
  width: 280px;
}
@media (max-width: 768px) {
  .c-header__logo--medium {
    padding: 24px;
    width: 225px;
  }
}

/*------------------------------------*\
  #FLEX-LAYOUT
\*------------------------------------*/
.c-flex-container {
  display: block;
}
@media (min-width: 768px) {
  .c-flex-container {
    display: flex;
    flex-direction: row;
  }
}

.c-flex-row {
  display: flex;
  flex-direction: row;
}

.c-flex-item {
  display: block;
}
@media (min-width: 768px) {
  .c-flex-item {
    order: 0;
    flex-grow: 1;
    -ms-flex: 1 1 0px; /*  IE10 fix  */
    -webkit-flex: 1 1 0; /*  changed  */
    flex: 1 1 0;
    width: 100%;
    order: 0;
  }
}

.c-flex-direction--rowReverse {
  flex-direction: row-reverse;
}

.c-flex-justify-content--center {
  justify-content: center;
}

/*------------------------------------*\
  #LIST STYLES
\*------------------------------------*/
.c-list {
  margin: 0;
  padding: 0;
}

.c-custom-list {
  margin: 0;
  padding: 8px;
  list-style: none;
  line-height: 1.5;
}
.c-custom-list li {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .c-custom-list li {
    margin-bottom: 16px;
  }
}
.c-custom-list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .c-custom-list {
    padding: 0;
  }
}

.c-list-item {
  font-size: 16px;
  font-weight: 400;
  color: #213848;
  margin-bottom: 16px;
  width: 100%;
}
.c-list-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .c-list-item {
    width: 78%;
  }
}

.c-listStyle--stop {
  list-style: none;
}
.c-listStyle--stop li {
  background-image: url(images/icons/icon-stop--teal.svg);
  background-repeat: no-repeat;
  background-position: left 4px;
  padding: 0px 0px 3px 24px; /** dont have spacer variable for mentioned px*/
}

.c-listStyle--info {
  list-style: none;
}
.c-listStyle--info li {
  background: url(images/icons/icon-info--teal.svg);
  background-repeat: no-repeat;
  background-position: left 4px;
  padding: 0px 0px 3px 24px; /** dont have spacer variable for mentioned px*/
}

/*------------------------------------*\
  #USAGE DETAILS
\*------------------------------------*/
.c-graph {
  height: 185px;
  margin: 0 auto;
  width: 80%;
}

.c-graph.highcharts-container {
  outline: 1px black solid;
}

.c-graph svg {
  outline: 1px black solid;
}

.highcharts-root:after {
  content: "";
  width: 100%;
  height: 10%;
  background: transparent;
  position: absolute;
  bottom: 10%;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

rect.highcharts-plot-background {
  display: block;
  border-bottom: 1px solid #dbdee0;
}

.highcharts-grid.highcharts-yaxis-grid {
  display: none;
}

.highcharts-axis.highcharts-xaxis {
  display: block;
}

rect.highcharts-color-1 {
  fill: #f17718 !important;
}

rect.highcharts-color-0 {
  fill: #faa713 !important;
}

/*------------------------------------*\
  #MODALS
\*------------------------------------*/
.c-modal {
  text-align: center;
  padding: 0;
}

.c-modal:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.c-modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 90%;
  max-width: 700px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.35);
  position: relative;
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.5;
  color: #213848;
  /* Small devices (tablets, 768px and up) */
}
@media (min-width: 768px) {
  .c-modal-dialog {
    padding: 24px;
  }
}

.c-modal-ribbon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

.c-modal-ribbon__blocks {
  display: flex;
}

.c-modal-ribbon__blocks > div {
  height: 6px;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.c-modal__close {
  opacity: 1;
  position: absolute;
  top: 24px;
  right: 8px;
  border: 0;
  background: none;
}
@media screen and (min-width: 768px) {
  .c-modal__close {
    top: 24px;
    right: 16px;
  }
}

.c-modal__header {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #213848;
  text-transform: none;
  line-height: 1.25;
  padding: 16px 0 32px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-modal__header {
    font-size: 36px !important;
  }
}

.c-modal__footer {
  font-size: 18px;
  margin: 24px 0 16px;
  text-align: center;
}

.c-modal-title--alert {
  color: #c1381b;
  font-size: 36px !important;
  font-weight: 600;
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  text-transform: none;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-modal-title--alert {
    padding: 0;
    margin: 0;
  }
}

/*------------------------------------*\
  #PAPERLESS MODAL
\*------------------------------------*/
.c-modal-paperless-main {
  font-size: 16px;
  font-weight: 400;
}
.c-modal-paperless-main .c-alert--info {
  opacity: 0;
  display: flex;
  align-items: center;
  padding: 4px 4px 4px;
  background-image: none;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-modal-paperless-main .c-alert--info {
    margin-bottom: 8px;
  }
}
.c-modal-paperless-main .c-alert--info .c-alert--info__icon {
  padding: 0 8px 0 8px;
}

.c-modal-paperless__email-desc {
  margin-bottom: 24px;
  font-weight: 400;
}

.c-form-input:focus ~ .c-alert--info {
  opacity: 1;
}

.c-modal-paperless__form {
  padding: 0 0;
}

.c-modal-paperless__account-info {
  display: flex;
  flex-direction: row;
  border-top: 1px dashed #c4cdd4;
  border-bottom: 1px dashed #c4cdd4;
  padding: 8px;
  margin-bottom: 24px;
}

.c-modal-paperless__account-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-modal-paperless__service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 4px;
}

.c-modal-paperless__nickname {
  display: flex;
  align-items: center;
  color: #80909b;
  margin-bottom: 0;
  line-height: 1.5;
  text-transform: capitalize;
}

.c-modal-paperless__number {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
}

.c-modal-paperless-confirmation__account {
  display: flex;
}

.c-modal-paperless__icon-flash {
  width: 32px;
  display: flex;
  align-items: center;
  align-self: center;
}

.c-modal-paperless__icon-gas {
  width: 21px;
  display: flex;
  align-items: center;
  align-self: center;
  margin-right: 8px;
}

.c-modal-paperless-tc__link {
  display: flex;
  margin-bottom: 24px;
}

.c-modal-btn {
  margin: 0 auto;
  line-height: 1.5;
  padding: 8px;
}
@media (min-width: 768px) {
  .c-modal-btn {
    max-width: 260px;
  }
}

.c-modal-btn--close {
  color: #0e75c4;
  background: none;
}

.c-modal-paperless-email__info-alert {
  margin-bottom: 4px;
}

/*------------------------------------*\
    #TERMS & CONDITIONS MODAL
  \*------------------------------------*/
.c-modal-paperless-tc {
  padding: 0 8px 32px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .c-modal-paperless-tc {
    padding: 0;
  }
}

.c-modal-paperless-tc__header-wrapper {
  border-bottom: 1px dashed #dbdee0;
}

.c-modal-paperless-tc__header {
  padding: 4px 0 24px 48px;
  font-size: 22px !important;
}
@media screen and (max-width: 768px) {
  .c-modal-paperless-tc__header {
    padding: 48px 0 24px !important;
  }
}

.c-modal__icon-back {
  position: absolute;
}

.c-modal-paperless-tc__text {
  padding: 24px 0;
  overflow: scroll;
  height: 454px;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .c-modal-paperless-tc__text {
    padding: 32px 48px;
  }
}

.c-modal-paperless__enrolled-label {
  font-size: 16px;
  margin-bottom: 0;
}

.c-modal-paperless__autopay-label {
  color: #144870;
}

/*------------------------------------*\
    #CONFIRMATION MODAL
  \*------------------------------------*/
.c-modal-paperless-confirmation {
  padding: 8px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .c-modal-paperless-confirmation {
    padding: 0 24px 8px 24px;
  }
}

.c-modal-paperless-confirmation__setting {
  background-image: url(images/icons/icon-paperless.svg);
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-top: 1px dashed #c4cdd4;
  border-bottom: 1px dashed #c4cdd4;
  background-size: 32px;
  padding: 24px 8px 24px 56px;
  margin-bottom: 0;
}

.c-modal-paperless-confirmation__checkfree {
  background-image: url(images/icons/icon-stop--label.svg);
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-bottom: 1px dashed #c4cdd4;
  background-size: 32px;
  padding: 24px 8px 24px 56px;
  margin-bottom: 0;
}

.c-modal-paperless-confirmation__body {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 32px;
}

.c-modal-paperless-confirmation__email {
  margin-bottom: 32px;
  word-wrap: break-word;
}

.c-modal-paperless__icon-small {
  padding-right: 4px;
  align-self: center;
}

.c-modal-paperless__autopay-info {
  background-color: #e9f6fc;
  padding: 16px 32px 32px;
  border-radius: 3px;
}

.c-modal-paperless__autopay-wrapper {
  padding: 24px 0 0 0;
}
@media (min-width: 768px) {
  .c-modal-paperless__autopay-wrapper {
    padding-left: 40px;
    padding-top: 0;
  }
}

.c-modal-paperless-autopay__heading {
  color: #144870;
  font-family: inherit;
  font-weight: 700;
  font-size: 24px !important;
  margin-bottom: 8px;
  line-height: 1.5;
}

.c-border-bottom--dash-gray {
  border-bottom: 1px dashed #c4cdd4;
}

.c-modal-paperless-confirmation:focus, .c-modal-paperless-tc:focus {
  outline: 0;
}

/*------------------------------------*\
  #FORMS
\*------------------------------------*/
.c-form-container {
  padding-left: 8px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .c-form-container {
    float: left;
    width: 100%;
    max-width: 305px;
  }
}

.c-form-container::placeholder {
  color: #687782;
}

.c-form-input {
  font-size: 16px;
  line-height: 1.5;
  color: #213848; /**As mentioned by the UX team going forward the form comp design would be similar to transfer designs for all modules */
  padding-left: 16px;
  width: 100%;
  height: 52px;
  margin-bottom: 4px;
  border: 1px solid #80909b;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: inset 0 4px 0 0 #ebebeb;
}
@media (min-width: 768px) {
  .c-form-input {
    height: 44px;
  }
}

.c-form-input::-ms-clear {
  display: none;
}

.c-form-input:focus {
  /*outline: 1px solid $blue-60 !important;
  outline: $spacer-1 auto -webkit-focus-ring-color !important;*/
  outline: none;
  border: 1px solid #0e75c4;
}

.c-form-input:disabled {
  box-sizing: border-box;
  border: 1px solid #9dacb6;
  border-radius: 3px;
  background-color: rgba(196, 205, 212, 0.3);
  box-shadow: inset 0 4px 0 0 #DDDDDD;
  cursor: not-allowed;
}

.c-accessibility-legend {
  display: none;
}

.c-form-label {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-transform: none;
}

.c-form-label--bold {
  font-weight: 700;
}

.c-form-label--semibold {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #445968;
}
@media (min-width: 768px) {
  .c-form-label--semibold {
    font-size: 14px;
  }
}

.c-form-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #213848;
}

.c-form-label-lgfont-26 {
  font-size: 26px;
}

.c-form-input--error {
  border: 1px solid #c1381b !important; /**to override the border on select as well hence applied important*/
}

.c-form-input--error:focus {
  border: 1px solid #c1381b;
}

.c-form-error {
  color: #c1381b;
  font-size: 14px;
  margin-bottom: 4px;
}

.c-form-error--hidden {
  visibility: hidden;
}

.c-form__error-message--hidden {
  visibility: hidden;
}

.c-form__error-message {
  color: #c1381b;
  font-size: 13px; /**As per UX team going forward all the error messges will have the mentioned variable having size 13px */
  margin-bottom: 0;
}

.c-form-custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: normal;
  line-height: 17px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.c-form-custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.c-form-custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  border: 1px solid #867d7d;
}

/* When the checkbox is focused, add a border */
.c-form-custom-checkbox input:focus ~ .checkmark {
  border: 1px dotted #213848;
}

/* When the checkbox is checked, add a blue background */
.c-form-custom-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
  border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.c-form-custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.c-form-custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.c-form-custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(40deg);
}

/**Darker border checkbox for transfer */
.c-form-custom-checkbox > .checkmark--dark {
  top: 3px;
  border: 2px solid #80909b;
  border-radius: 3px;
  height: 18px;
  width: 18px;
}

/*------------------------------------*\
  #TERMS & CONDITIONS
\*------------------------------------*/
.c-form-tc {
  clear: both;
  display: flex;
  align-items: center;
  margin: 0 0 24px 0;
  overflow: auto;
  padding-top: 48px;
}

.c-form-tc__text {
  font-size: 16px;
  margin: 0;
}

.c-form-tc input[type=checkbox] {
  margin: 0 8px 0 0;
  height: 18px;
  width: 18px;
  border: 1px solid #687782;
  border-radius: 2px;
  box-shadow: none;
}

fieldset:focus {
  outline: none;
}

/***********************Custom radio button*******************************/
/* The container */
.c-custom-radiobutton {
  display: block;
  color: #213848;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 1.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.c-custom-radiobutton input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #80909b;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.c-custom-radiobutton:hover input ~ .radio-checkmark {
  background-color: #fff;
  border: 2px solid #128ddd;
}

/* When the radio button is checked, add a blue background */
.c-custom-radiobutton input:checked ~ .radio-checkmark {
  background-color: #fff;
  border: 2px solid #128ddd;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.c-custom-radiobutton input:checked ~ .radio-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.c-custom-radiobutton .radio-checkmark:after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #128ddd;
}

.c-custom-radiobutton > .radio-checkmark--modified {
  top: 10px;
}

/************************************/
.c-form-paperless-email__error {
  min-height: 24px;
}

/**********************************Radio button as Chip*************************************************8*/
/* The container */
.c-radiobutton-chip {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 768px) {
  .c-radiobutton-chip {
    margin-bottom: 8px;
    margin-right: 16px;
  }
}

/* Hide the browser's default radio button */
.c-radiobutton-chip input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.chip-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 44px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #109de7;
  font-weight: 600;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .chip-checkmark {
    min-width: 140px;
  }
}

/* On mouse-over, add a grey background color */
.c-radiobutton-chip:hover input ~ .chip-checkmark {
  box-shadow: 0px 0px 3px 1px #128ddd;
}

/* When the radio button is checked, add a blue background */
.c-radiobutton-chip input:checked ~ .chip-checkmark {
  box-sizing: border-box;
  background-color: #128ddd;
  color: #fff;
  border: 2px solid #92d2f4;
  border-radius: 3px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.chip-checkmark:after {
  content: none;
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.c-radiobutton-chip input:checked ~ .chip-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.c-radiobutton-chip .chip-checkmark:after {
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.chip-label {
  position: relative;
  z-index: 99;
  top: 9px;
  font-size: 18px;
  color: #0e75c4;
  font-weight: 600;
}
@media (min-width: 768px) {
  .chip-label {
    left: 0;
  }
}

.chip-label--selected {
  color: #fff;
}

.c-chip-container {
  width: 100%;
}
@media (min-width: 768px) {
  .c-chip-container {
    max-width: 320px;
  }
}

/*------------------------------------*\
  #MODALS
\*------------------------------------*/
.c-loader {
  display: none;
}
.c-loader .c-loader-background {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #ebebeb;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /* IE 8 */
  filter: alpha(opacity=65); /* IE 8 */
  -moz-opacity: 0.65; /* Netscape */
  -khtml-opacity: 0.65; /* Safari 1.x */
  opacity: 0.65; /* Good browsers */
}

.c-loader-circle {
  display: block;
  z-index: 2150;
  color: #213848;
  text-align: center;
  border: 6px solid #dbdee0;
  border-radius: 50%;
  border-top: 6px solid #00b140;
  width: 71px;
  height: 71px;
  animation: spin 2s linear infinite;
  border-bottom: 6px solid #128ddd;
  border-right: 6px solid #00b140;
}

.c-input-flow {
  counter-reset: step;
  display: flex;
  flex-direction: row;
  padding: 0 0 0 24px;
  margin-bottom: 8px;
  /* Small devices (tablets, 768px and below) */
}
@media (max-width: 767px) {
  .c-input-flow {
    padding: 0;
  }
}

.c-input-flow li {
  list-style-type: none;
  order: 5;
  flex-grow: 1;
  float: left;
  font-size: 12px;
  position: relative;
  color: #687782;
  /* Small devices (tablets, 768px and below) */
}
@media (max-width: 767px) {
  .c-input-flow li {
    width: auto;
    margin-right: 6px;
  }
}
@media (max-width: 320px) {
  .c-input-flow li {
    width: auto;
    margin-right: 0;
  }
}

.c-input-flow label {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #687782;
  /* Small devices (tablets, 768px and up) */
}
@media (max-width: 767px) {
  .c-input-flow label {
    display: none;
  }
}

.c-input-flow li.active label {
  color: #008380;
  font-weight: 600;
}

.c-input-flow li.complete label {
  color: #008380;
  position: relative;
  top: -9px;
}

.c-input-flow li:before {
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: 600;
  content: counter(step);
  counter-increment: step;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #80909b;
  background-color: #ebebeb;
  margin-right: 4px;
}
@media (max-width: 320px) {
  .c-input-flow li:before {
    margin-right: 0;
  }
}

.c-input-flow li:after {
  content: "";
}

.c-input-flow li:first-child:after {
  content: none;
}

.c-input-flow li.active {
  font-size: 14px;
  font-weight: 600;
  color: #008380;
}

.c-input-flow li.active:before {
  background-color: #2e9997;
  color: #fff;
}

.c-input-flow li.complete:before {
  content: "";
  background-image: url(images/icons/icon-checkmark--teal.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #e7f3f3;
  display: inline-block;
}
@media (max-width: 767px) {
  .c-input-flow li.complete:before {
    margin-right: 10px;
  }
}
@media (max-width: 320px) {
  .c-input-flow li.complete:before {
    margin-right: 0;
  }
}

.c-input-flow li.active + li:after {
  background-color: #00b140;
}

/*------------------------------------*\
  #PAGE
\*------------------------------------*/
/** Page Shell Layout */
.c-container--pad0, .c-container {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.c-page {
  padding: 0;
  /*margin-bottom: $spacer-4;*/
  /* Small devices (tablets, 767px and below ) */
}
@media (min-width: 768px) {
  .c-page {
    padding: 8px 28px;
  }
}

.c-page--default {
  background-color: #fff;
  margin: 0;
}

.c-container {
  padding: 16px;
  margin-top: 10px; /**We dont have spacer variable for the mentioned PX**/
}
@media (min-width: 768px) {
  .c-container {
    margin-top: 0;
  }
}

.c-container--pad0 {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .c-container--pad0 {
    margin-top: 0;
  }
}

/*------------------------------------*\
  #Messages
    Includes styling for warnings, success or error
\*------------------------------------*/
.c-progress-message {
  font-size: 14px;
  font-weight: 400;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border: 1px solid #fff;
  padding: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .c-progress-message {
    margin-top: 16px;
    padding: 16px 24px;
  }
}

/***to show the message in one line for the p tag comming from backend ***/
.c-progress-message p {
  display: inline;
}

.c-progress-message--error {
  background-color: #fdeeea;
  color: #c1381b;
}

.c-progress-message--success {
  background-color: #e7f7ed;
  color: #007129;
}

.c-progress-message--neutral {
  background-color: #e9f6fc;
  color: #1063a2;
}

.c-progress-message--alert {
  background-color: #fdf2ea;
  color: #9a4c10;
}

.c-progress-message--warning {
  font-size: 14px;
  font-weight: 400;
  color: #DA660C;
}

.c-progress-message--warningBox {
  font-size: 16px;
  color: #DA660C; /**for color variable Need to Discuss with the UX team*/
  background-color: #FEF8F4;
  padding: 8px 16px;
  border: 1px solid #FBD9C0;
}

.c-message--error {
  color: #c1381b;
  font-weight: 700;
  font-size: 16px;
}

.c-dz-preview-file-dic {
  background-color: #e9f6fc;
  height: 80px;
}

.c-dz-thumbnail {
  float: left;
  margin: 0px;
  height: 100%;
  width: 10%;
}

.c-dz-remove-box {
  float: right;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .c-dz-remove-box {
    margin-top: 12px;
  }
}

.c-dz-filename {
  color: #2f4656;
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-left: 5%;
}

@media (max-width: 685px) {
  .c-dz-filename {
    font-size: 11px;
    line-height: 12px;
    margin-left: 0%;
  }
}
.c-dz-remove-word-link {
  color: #0e75c4;
  height: 24px;
  width: 62px;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
}

.c-dz-remove-word-x {
  color: #C47467;
  height: 24px;
  width: 62px;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
}

.c-data-size:before {
  content: "(";
}

.c-data-size:after {
  content: ")";
}

.c-dz-error-boxc-dz-error-boxc-dz-error-box {
  box-sizing: border-box;
  height: 97px;
  width: 789px;
  border: 1px solid #F9CCC2;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .c-dz-error-boxc-dz-error-boxc-dz-error-box {
    height: 176px !important;
  }
}

.c-dz-warning-square {
  background-color: #fdeeea;
  width: 11%;
}
@media (max-width: 768px) {
  .c-dz-warning-square {
    width: 20%;
  }
}

.c-dz-warning-icon {
  font-size: 0;
  vertical-align: middle;
  height: 95%;
  width: 50px;
  display: inline-block;
  background: url(images/Icons/icon-upload-warning.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  left: 2.5%;
  top: 0;
}

.c-limit-chars-span {
  font-size: 12px;
  color: #687782;
  font-weight: 500;
}

.u-pad--0 {
  padding: 0;
}

.u-pad--1 {
  padding: 4px;
}

.u-pad--2 {
  padding: 8px;
}

.u-pad--3 {
  padding: 16px;
}

.u-pad--4 {
  padding: 24px;
}

.u-pad--5 {
  padding: 32px;
}

.u-pad--6 {
  padding: 40px;
}

.u-pad--7 {
  padding: 48px;
}

.u-pad--top-0 {
  padding-top: 0;
}

.u-pad--top-1 {
  padding-top: 4px;
}

.u-pad--top-2 {
  padding-top: 8px;
}

.u-pad--top-3 {
  padding-top: 16px;
}

.u-pad--top-4 {
  padding-top: 24px;
}

.u-pad--top-5 {
  padding-top: 32px;
}

.u-pad--top-6 {
  padding-top: 40px;
}

.u-pad--top-7 {
  padding-top: 48px;
}

.u-pad--right-0 {
  padding-right: 0;
}

.u-pad--right-1 {
  padding-right: 4px;
}

.u-pad--right-2 {
  padding-right: 8px;
}

.u-pad--right-3 {
  padding-right: 16px;
}

.u-pad--right-4 {
  padding-right: 24px;
}

.u-pad--right-5 {
  padding-right: 32px;
}

.u-pad--right-6 {
  padding-right: 40px;
}

.u-pad--right-7 {
  padding-right: 48px;
}

.u-pad--right-8 {
  padding-right: 56px;
}

.u-pad--bottom-0 {
  padding-left: 0;
}

.u-pad--bottom-1 {
  padding-bottom: 4px;
}

.u-pad--bottom-2 {
  padding-bottom: 8px;
}

.u-pad--bottom-3 {
  padding-bottom: 16px;
}

.u-pad--bottom-4 {
  padding-bottom: 24px;
}

.u-pad--bottom-5 {
  padding-bottom: 32px;
}

.u-pad--bottom-6 {
  padding-bottom: 40px;
}

.u-pad--bottom-7 {
  padding-bottom: 48px;
}

.u-pad--left-0 {
  padding-left: 0;
}

.u-pad--left-1 {
  padding-left: 4px;
}

.u-pad--left-2 {
  padding-left: 8px;
}

.u-pad--left-3 {
  padding-left: 16px;
}

.u-pad--left-4 {
  padding-left: 24px;
}

.u-pad--left-5 {
  padding-left: 32px;
}

.u-pad--left-6 {
  padding-left: 40px;
}

.u-pad--left-7 {
  padding-left: 48px;
}

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

.u-margin--bottom-0 {
  margin-bottom: 0;
}

.u-margin--bottom-1 {
  margin-bottom: 4px;
}

.u-margin--bottom-2 {
  margin-bottom: 8px;
}

.u-margin--bottom-3 {
  margin-bottom: 16px;
}

.u-margin--bottom-4 {
  margin-bottom: 24px;
}

.u-margin--bottom-5 {
  margin-bottom: 32px;
}

.u-margin--bottom-6 {
  margin-bottom: 40px;
}

.u-margin--bottom-7 {
  margin-bottom: 48px;
}

.u-margin--bottom-8 {
  margin-bottom: 56px;
}

.u-margin--right-0 {
  margin-right: 0;
}

.u-margin--right-1 {
  margin-right: 4px;
}

.u-margin--right-2 {
  margin-right: 8px;
}

.u-margin--right-3 {
  margin-right: 16px;
}

.u-margin--right-4 {
  margin-right: 24px;
}

.u-margin--left-0 {
  margin-left: 0;
}

.u-margin--left-1 {
  margin-left: 4px;
}

.u-margin--left-2 {
  margin-left: 8px;
}

.u-margin--left-3 {
  margin-left: 16px;
}

.u-margin--left-4 {
  margin-left: 24px;
}

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

.u-margin--top-2 {
  margin-top: 8px;
}

.u-margin--top-3 {
  margin-top: 16px;
}

.u-margin--top-4 {
  margin-top: 24px;
}

/********TEXT COLORS***********/
.u-text--red-60 {
  color: #c1381b;
}

/*******BACKGROUND COLORS*********/
.u-bg--blue-40 {
  background-color: #109de7;
}

.u-bg--bright-green-40 {
  background-color: #2ebf62;
}

.u-bg--green-50 {
  background-color: #007749;
}

.u-bg--red-50 {
  background-color: #eb4420;
}

.u-bg--red-60 {
  background-color: #c1381b;
}

.u-bg--red-70 {
  background-color: #962c15;
}

/*------------------------------------*\
  #ASIDE CARD
\*------------------------------------*/
.u-aside-card__header, .u-aside-card__body {
  padding: 16px;
  border-bottom: 1px solid #dbdee0;
}

.u-aside-card__body {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .u-aside-card__body {
    padding: 16px 24px 24px;
  }
}

.u-aside-card__body > p {
  padding-bottom: 8px;
}

/*------------------------------------*\
  #ACCOUNT CARD
\*------------------------------------*/
.u-acct-card:last-child {
  margin-bottom: 40px;
}

.u-acct-card-header {
  position: relative;
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .u-acct-card-header {
    border-bottom: none;
  }
}

.u-acct-card-header__info {
  line-height: 1.5;
  padding: 8px 0 8px 16px;
  border-bottom: 0;
}
@media (min-width: 768px) {
  .u-acct-card-header__info {
    padding-left: 24px;
  }
}
@media (min-width: 992px) {
  .u-acct-card-header__info {
    display: inline-block;
    border-bottom: 0;
  }
}

.u-acct-card-header__left {
  width: 100%;
  border-bottom: 1px solid #dbdee0;
}

.u-acct-card-header__expand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  padding: 16px 0;
  line-height: 1.25;
  text-align: center;
  border-left: 1px solid #dbdee0;
  border-bottom: 1px solid #dbdee0;
}

.u-acct-card-header__expand-icon--border-bottom {
  border-bottom: 1px solid #fff;
}

.u-acct-card-header__icon {
  padding-right: 8px;
  padding-bottom: 3px;
  vertical-align: middle;
}

.u-acct-card-header__nickname,
.u-acct-card-header__number {
  font-size: 16px;
  font-weight: 400;
  color: #445968;
}

.u-acct-card-header__nickname {
  font-weight: 600;
}

.u-acct-card-header__number {
  padding-left: 24px;
}
@media (min-width: 768px) {
  .u-acct-card-header__number {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .u-acct-card-header__nickname:before,
  .u-acct-card-header__number:before {
    font-weight: 300;
    padding: 0 4px 0 8px;
    color: #687782;
    content: "/ ";
  }
}

.u-acct-card-container {
  position: relative;
}

.u-acct-card-body {
  position: relative;
  border-bottom: 1px #128ddd dashed;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .u-acct-card-body {
    border-bottom: 0;
    padding: 32px 24px 24px 24px;
  }
}
@media (min-width: 992px) {
  .u-acct-card-body {
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 48px;
    margin-bottom: 0;
  }
}

.u-acct-card-expand-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: rgba(128, 144, 155, 0.6);
}

.u-acct-card-expand-info__body {
  background-color: #fff;
  padding: 24px 16px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .u-acct-card-expand-info__body {
    padding: 24px 32px;
  }
}

.u-acct-card-expand-info__heading {
  font-weight: 600;
  color: #213848;
  line-height: 1.25;
}

.u-acct-card-body__left-col {
  padding: 0 16px;
}
@media (min-width: 992px) {
  .u-acct-card-body__left-col {
    /*margin-left: $spacer-3;*/
  }
}

.u-acct-card-body__right-col {
  padding: 0 16px;
}
@media (min-width: 992px) {
  .u-acct-card-body__right-col {
    text-align: center;
    margin-right: 0;
  }
}

/** Account Card Footer **/
.u-acct-card-footer {
  background-color: #e9f6fc;
  padding: 4px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px solid #fff;
}

.u-paperless {
  display: none;
  padding: 16px 16px 16px;
  border-bottom: 1px dashed #dbdee0;
}
@media (min-width: 768px) {
  .u-paperless {
    padding-left: 24px;
  }
}
@media (min-width: 992px) {
  .u-paperless {
    display: inline-block;
    border: 0;
    padding: 4px 0 0 4px;
  }
}

.u-paperless.mobile {
  display: none;
  padding: 0 0 16px 0;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .u-paperless.mobile {
    display: block;
  }
}

@media (min-width: 992px) {
  .u-paperless:before {
    font-weight: 300;
    padding: 0 4px 0 0;
    color: #687782;
    content: "/ ";
  }
}

/*Account Card Styles for Payment Information (autopay, amount,) */
.u-autopay {
  color: #008380;
  padding-bottom: 4px;
}

.u-amount {
  font-size: 60px;
  color: #000;
  line-height: 1;
  padding-bottom: 8px;
}

.u-amount--credit {
  color: #00b140;
}

.u-payment-info {
  margin-bottom: 0;
  padding-bottom: 24px;
}
@media (min-width: 992px) {
  .u-payment-info {
    padding-bottom: 0;
  }
}

.u-history {
  margin-left: 16px;
  white-space: nowrap;
}

.u-view-bill {
  display: block;
  margin-top: 24px;
  margin-bottom: 0;
}

.u-usage-btn {
  background: #e9f6fc url(images/icons/icon-usage-open.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 0;
  width: 100%;
  height: 32px;
}

.u-usage-btn.collapsed {
  background: #e9f6fc url(images/icons/icon-usage-closed.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.u-usage-btn:focus {
  outline: -webkit-focus-ring-color auto 0;
}

.u-usage-container {
  background-color: #fff;
  border-radius: 3px;
}

.u-usage-container__nav {
  text-align: center;
  /*padding: $spacer-0 $spacer-0 $spacer-4;*/
}

.u-value {
  color: #000;
  font-size: 26px;
}

/*------------------------------------*\
  #URGENT MESSAGE CARD
\*------------------------------------*/
.u-urgent-msg-card {
  width: 100%;
  border: 1.5px solid #f28871;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: none;
}

.u-urgent-msg-card-icon-bg {
  vertical-align: middle;
  height: 100%;
  width: 50px;
  display: inline-block;
  background: #fdeeea url(images/icons/icon-urgent-msg.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .u-urgent-msg-card-icon-bg {
    width: 78px;
  }
}

.u-urgent-msg-card-message__info {
  display: inline-block;
  width: 75%;
  vertical-align: middle;
  color: #445968;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 24px;
  margin: 16px 16px 16px 64px;
  position: relative;
}
@media (min-width: 768px) {
  .u-urgent-msg-card-message__info {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0 10px 88px;
  }
}
@media (min-width: 992px) {
  .u-urgent-msg-card-message__info {
    width: 58%;
  }
}

/*------------------------------------*\
  #ACCOUNT OVERVIEW HEADER
\*------------------------------------*/
/* Account Overview Header */
.u-ao-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.u-ao-header:before, .u-ao-header:after {
  display: none;
}

/*------------------------------------*\
  #NO ACCOUNTS CARD
\*------------------------------------*/
/** No Accounts Card Header */
.u-no-acct-card-header, .u-no-acct-card-new {
  padding: 24px 24px 32px;
  border-bottom: 1px solid #dbdee0;
}
@media (min-width: 778px) {
  .u-no-acct-card-header, .u-no-acct-card-new {
    padding: 32px 40px;
  }
}

/** No Accounts Card Body */
.u-no-acct-card-body {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .u-no-acct-card-body {
    padding: 4px 0;
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .u-no-acct-card-new {
    padding: 40px 40px 48px;
    border-bottom: 0;
    border-right: 1px solid #dbdee0;
    flex: 1;
  }
}

.u-no-acct-card-new__item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 778px) {
  .u-no-acct-card-new__item {
    flex-direction: row;
  }
}

.u-no-acct-card-new__item-left {
  padding-bottom: 24px;
}
@media (min-width: 778px) {
  .u-no-acct-card-new__item-left {
    padding-bottom: 0;
    width: 60%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
  }
}

.u-no-acct-card-new__item-left > p {
  margin-bottom: 16px;
}

@media (min-width: 778px) {
  .u-no-acct-card-new__item-right {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }
}

.u-no-acct-card-body-old {
  padding: 24px 24px 40px;
}
@media (min-width: 778px) {
  .u-no-acct-card-body-old {
    padding: 32px 40px 48px;
  }
}
@media (min-width: 992px) {
  .u-no-acct-card-body-old {
    padding: 40px 40px 48px;
    display: flex;
    flex: 0.35;
    flex-direction: column;
    justify-content: space-between;
  }
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

.u-position-relative {
  position: relative;
}

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

.u-text-align-right {
  text-align: right;
}

.u-text-align-left {
  text-align: left;
}

.u-text-align-right {
  text-align: right;
}

.u-text-align-justify {
  text-align: justify;
}

.u-text-bold {
  font-weight: bold;
}

.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-clearfix {
  clear: both;
}

.u-width-100 {
  width: 100%;
}

.u-width-50 {
  width: 50%;
}

.u-width-20 {
  width: 20%;
}

.u-height-100 {
  height: 100%;
}

.u-height-80 {
  height: 80%;
}

.u-border-radius {
  border-radius: 4px;
}

.u-content {
  width: 100%;
}
@media (min-width: 768px) {
  .u-content {
    width: 70%;
  }
}

/**For Privacy statement P tags added by sitefinity */
.u-content + p, .u-content ~ p {
  width: 100%;
  line-height: 1.5;
  color: #2f4656;
  font-size: 16px;
  font-weight: 400;
  margin-right: 8px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .u-content + p, .u-content ~ p {
    width: 70%;
  }
}

.u-border-gray--dotted {
  border: 1px dotted #687782;
}

.u-font-family-default {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
}

.u-lineHeight--default {
  line-height: 1.5;
}

.horizontal-line {
  border: 1px solid #e7f3f3;
  width: 100%;
  margin-bottom: 24px;
  margin-top: 0;
}

.u-horizontal-line--dotted {
  border: 1px dotted #b9dddc;
  width: 100%;
  margin-bottom: 24px;
  margin-top: 24px;
}

.u-dotted-border {
  background-image: linear-gradient(to right, #e7f3f3 10%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

.list-style-none {
  list-style: none;
}

/*------------------------------------*\
  #ACCOUNT OVERVIEW PAGE
\*------------------------------------*/
/** This page must be refactored **/
/*Account Overview Content Container*/
.u-account-overview {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #445968;
  width: 93%;
  max-width: 360px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .u-account-overview {
    max-width: 736px;
  }
}
@media (min-width: 992px) {
  .u-account-overview {
    max-width: 960px;
  }
}

.add-account-wizard {
  max-width: 100% !important;
}

/********************AO Paperless Modal********************/
.u-paperless-container {
  padding: 8px;
}
.u-paperless-container .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.u-paperless-container .col-sm-12 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
@media (min-width: 768px) {
  .u-paperless-container {
    padding: 0 24px;
  }
  .u-paperless-container .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .u-paperless-container .col-sm-12 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/*******************************************************/
.bootstrap-select.ellipsis-list-ddl.btn-group .dropdown-toggle .filter-option {
  text-overflow: ellipsis;
  width: 90%;
}

/*------------------------------------*\
  #DEBT.CSS
\*------------------------------------*/
body.responsive .o-heading-xs {
  font-size: 16px;
  padding: 0;
}

body.responsive .o-heading-sm {
  font-size: 18px;
  font-weight: 600;
}

body.responsive .u-usage-container__nav .btn {
  font-size: 14px;
}

body.responsive .o-heading-xl {
  line-height: 1.5;
}
@media (max-width: 767px) {
  body.responsive .o-heading-xl {
    font-size: 22px;
    padding-top: 0;
  }
}

.u-account-overview .row:before {
  display: none;
}

.u-text-semibold {
  font-weight: 600;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-16 {
  font-size: 16px;
}

.u-display--hidden {
  display: none;
}

.u-mb {
  margin-bottom: 16px;
}

.btn.btn-select {
  background: #fff;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.blockui {
  display: none;
}

.blockui .loading-msg {
  position: fixed;
  top: 50%;
  left: 50%;
  display: block;
  height: 100px;
  width: 250px;
  z-index: 2150;
  color: #213848;
  font-size: 15px;
  line-height: 100px;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-left: -125px;
  margin-top: -50px;
}

.u-field-form__error {
  border: 1px solid #c1381b;
}

.ui-margin--auto {
  margin: 0 auto 24px auto;
}

.u-margin--auto {
  margin: 0 auto;
}

.mr-8 {
  margin-right: 8px;
}

.address-search-text {
  margin: 0;
}
@media (min-width: 768px) and (min-width: 992px) {
  .address-search-text {
    width: 662px;
  }
}

.u-padding-left--20 {
  padding-left: 20px;
}

.service-changes--label {
  background-color: #e9f6fc;
  padding: 8px 16px 12px 40px;
  border-radius: 4px;
  font-size: 22px;
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.service-changes--label span {
  color: #445968;
  font-size: 18px;
  font-weight: 400;
  padding-left: 12px; /**spacer variable not available for 12px margin*/
}
@media (min-width: 768px) {
  .service-changes--label {
    width: 345px;
  }
}

/**to remove margin bottom on moving date page service components */
.u-margintop--3 {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .u-margintop--3 {
    margin-top: 0;
  }
}

/**To provide min-width to input box on account info contct-info component ***/
.contact-info {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .contact-info input {
    width: 268px;
  }
}

/***The icon arrow placement on the review page ******/
.u-icon-arrow {
  position: relative;
  top: 13px;
}

/***to provide width for the no match found on google like search */
@media (min-width: 768px) {
  #searchError {
    width: 662px;
  }
}

.u-max-width {
  max-width: 760px;
}

.u-identity-width {
  width: 164px;
}

/***To remove the margin bottom in the mailing address component in accountinfo****/
#newMailingAddress input {
  margin-bottom: 0;
}

/**To provide min-wodth to the leave pop-up button****/
@media (min-width: 768px) {
  .u-min-width--300 {
    min-width: 300px;
  }
}

/*Leave-pop-container paddings**/
.u-leavePop-container {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .u-leavePop-container {
    padding: 0 24px;
    margin-top: 24px;
  }
}

/**Leave pop-up blurr issue resolution the belw class is add and removed on side-panel component*/
.u-popup--changeposition {
  position: static;
}

/**To Override the padding bottom of the section when the comp has margin bottom*/
.u-zipcodeMarginTop-fix {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .u-zipcodeMarginTop-fix {
    margin-top: 0;
  }
}

.u-service-padding {
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .u-service-padding {
    padding-bottom: 16px;
  }
}

.u-primaryId-null span {
  margin-top: 0;
}
@media (min-width: 768px) {
  .u-primaryId-null {
    padding: 16px;
  }
}

.u-submitted-icon {
  display: flex;
}
.u-submitted-icon img {
  width: 60px;
  height: 60px;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .u-submitted-icon img {
    margin-right: 24px;
  }
}
@media (min-width: 768px) {
  .u-submitted-icon {
    margin-bottom: 4px;
  }
}

/*****EMail preference Utility debt****/
.u-unsubscribe-message-container {
  max-width: 517px;
}

/*------------------------------------*\
  #Pay In Person Page
\*------------------------------------*/
.u-legacy-page-container {
  background-color: #fff;
  padding-left: 48px;
  padding-top: 16px;
  padding-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .u-legacy-page-container {
    margin-top: 8px;
    padding-left: 16px;
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

.u-pay-in-person__header {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .u-pay-in-person__header {
    margin-bottom: 16px;
    font-size: 22px !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .u-pay-in-person__header {
    margin-bottom: 16px;
    font-size: 36px !important;
  }
}

.u-pay-in-person__content {
  padding-right: 48px;
}
@media (max-width: 768px) {
  .u-pay-in-person__content {
    padding-right: 16px;
  }
}

.u-legacy-urgent-message {
  background-color: #fdeeea;
  color: #c1381b;
  padding: 8px 8px;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #EBCCD1;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .u-legacy-urgent-message {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.u-legacy-content {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
  padding-right: 56px;
  color: #12202a;
}
@media (max-width: 768px) {
  .u-legacy-content {
    font-size: 16px;
    margin-bottom: 24px;
    padding-right: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .u-legacy-content {
    font-size: 16px;
    margin-bottom: 24px;
    padding-right: 0;
  }
}

.u-pay-in-person-find-a-location {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .u-pay-in-person-find-a-location {
    font-size: 16px;
  }
}

.u-pay-in-person-label {
  font-size: 14px;
  font-weight: 400;
}

.u-pay-in-person-filter1 {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .u-pay-in-person-filter1 {
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .u-pay-in-person-filter1 {
    margin-bottom: 16px;
  }
}

.u-pay-in-person-filter2 {
  padding-left: 32px;
  padding-right: 0;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .u-pay-in-person-filter2 {
    padding-left: 0;
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .u-pay-in-person-filter2 {
    padding-left: 0;
    margin-bottom: 16px;
  }
}

.u-pay-in-person-filter3 {
  padding-left: 32px;
  padding-right: 0;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .u-pay-in-person-filter3 {
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .u-pay-in-person-filter3 {
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 16px;
  }
}

.form-group label.u-legacy-form-label {
  font-size: 12px !important;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .form-group label.u-legacy-form-label {
    padding: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .form-group label.u-legacy-form-label {
    padding: 0;
  }
}

.u-legacy-form-input {
  font-size: 18px;
  line-height: 1.25;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .u-legacy-form-input {
    font-size: 14px !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .u-legacy-form-input {
    font-size: 16px !important;
  }
}

.u-pay-in-person-map {
  height: 400px;
  width: 100%;
}
@media (max-width: 768px) {
  .u-pay-in-person-map {
    height: 270px;
  }
}

.u-pay-in-person-view-pdf {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .u-pay-in-person-view-pdf {
    font-size: 16px;
  }
}

.u-legacy-btn__primary {
  padding: 0;
  margin-top: 2px;
  height: 34px;
  font-family: "Open Sans Condensed";
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
}

.u-legacy-btn__primary[disabled] {
  background-color: #dbdee0;
  border-color: #dbdee0;
  color: #12202a;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.52);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.u-pay-in-person__content .c-custom-radiobutton {
  font-size: 14px;
  padding-left: 24px;
  color: #000;
}
@media (max-width: 768px) {
  .u-pay-in-person__content .c-custom-radiobutton {
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .u-pay-in-person__content .c-custom-radiobutton {
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .u-pay-in-person-selection {
    margin-bottom: 32px;
  }
}

.js-u-pay-in-person__map-your-location-btn {
  background-color: #fff;
  border: none;
  outline: none;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  box-shadow: 0 1px 4px #9dacb6;
  cursor: pointer;
  margin-right: 16px;
  margin-bottom: 235px;
  padding: 0;
}
@media (max-width: 768px) {
  .js-u-pay-in-person__map-your-location-btn {
    margin-bottom: 170px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .js-u-pay-in-person__map-your-location-btn {
    margin-bottom: 235px;
  }
}

.js-u-pay-in-person__map-your-location {
  margin: 5px;
  width: 18px;
  height: 18px;
  background-image: url(https://maps.gstatic.com/tactile/mylocation/mylocation-sprite-1x.png);
  background-size: 180px 18px;
  background-position: 0px 0px;
  background-repeat: no-repeat;
}

.js-u-pay-in-person__map-recenter {
  color: rgb(68, 68, 68);
  font-family: Roboto, Arial, sans-serif;
  font-size: 10px;
  line-height: 15px;
  padding-left: 5px;
  padding-right: 5px;
  letter-spacing: 0.1;
  background-color: rgba(255, 255, 255, 0.4);
}

.js-u-pay-in-person__map-US {
  color: rgb(68, 68, 68);
  font-family: Roboto, Arial, sans-serif;
  font-size: 10px;
  line-height: 15px;
  padding-left: 5px;
  padding-right: 5px;
  letter-spacing: 0.1;
  background-color: rgba(255, 255, 255, 0.4);
}

.u-text-transform--small {
  text-transform: inherit !important;
}

/*------------------------------------*\
  #URGENT MESSAGE CARD
\*------------------------------------*/
.upload-u-urgent-msg-card {
  width: 90%;
  border: 1.5px solid #FDEEEA;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  color: #213848;
  font-size: 16px;
  margin: 2% 4%;
  min-height: 100px;
}

.upload-u-urgent-msg-card-icon-bg {
  vertical-align: middle;
  height: 100%;
  width: 50px;
  display: inline-block;
  background-color: #FDEEEA;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .upload-u-urgent-msg-card-icon-bg {
    width: 78px;
  }
}

.upload-u-urgent-msg-card-message__info {
  display: inline-block;
  width: 75%;
  vertical-align: middle;
  color: #445968;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 24px;
  margin: 16px 16px 16px 64px;
  position: relative;
}
@media (min-width: 768px) {
  .upload-u-urgent-msg-card-message__info {
    font-size: 14px;
    line-height: 20px;
    margin: 3% 0 3% 88px;
  }
}
@media (max-width: 768px) {
  .upload-u-urgent-msg-card-message__info {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 992px) {
  .upload-u-urgent-msg-card-message__info {
    width: 60%;
  }
}

.upload-u-urgent-msg-card-title {
  height: 54px;
  width: 344px;
  color: #213848;
  font-family: "Open Sans";
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 54px;
  margin-left: 5%;
}

.upload-u-urgent-link {
  color: #1a0dab;
}

.warning-icon {
  margin-top: 45%;
}

/*------------------------------------*\
  #SECURE DOCUMENT UPLOAD FORM
\*------------------------------------*/
.upload-your-document {
  color: #213848;
  font-family: "Open Sans";
  font-size: 36px !important;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 54px;
  text-transform: none;
  padding-top: 0px;
}

.remove-icon {
  font-size: 0;
  vertical-align: middle;
  height: 80%;
  width: 50px;
  display: inline-block;
  background: url(images/Icons/remove-icon.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  left: 2%;
}

.c-dz-error-box {
  box-sizing: border-box;
  height: 97px;
  width: 789px;
  border: 1px solid #F9CCC2;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .c-dz-error-box {
    height: 176px !important;
  }
}

/**********************************Radio button as Chip*************************************************8*/
/* The container */
.c-radiobutton-chip {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 768px) {
  .c-radiobutton-chip {
    margin-bottom: 8px;
    margin-right: 16px;
  }
}

/* Hide the browser's default radio button */
.c-radiobutton-chip input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.chip-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 44px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #128ddd;
  font-weight: 600;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.c-radiobutton-chip:hover input ~ .chip-checkmark {
  box-shadow: 0px 0px 3px 1px #128ddd;
}

/* When the radio button is checked, add a blue background */
.c-radiobutton-chip input:checked ~ .chip-checkmark {
  box-sizing: border-box;
  background-color: #128ddd;
  color: #fff;
  border: 2px solid #92d2f4;
  border-radius: 3px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.chip-checkmark:after {
  content: none;
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.c-radiobutton-chip input:checked ~ .chip-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.c-radiobutton-chip .chip-checkmark:after {
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.chip-label {
  position: relative;
  z-index: 99;
  top: 9px;
  font-size: 18px;
  color: #0e75c4;
  font-weight: 600;
}
@media (min-width: 768px) {
  .chip-label {
    left: 0;
    min-width: 160px;
  }
}

.chip-label--selected {
  color: #fff;
}

.c-chip-container--large {
  width: 100%;
}

.address-label {
  height: 21px;
  width: 481px;
  color: #445968;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 21px;
}

.c-custom-radiobutton > .radio-checkmark--modified {
  top: 10px;
}

.bootstrap-select > select.mobile-device {
  width: 0% !important;
}

.pdf-thumbnail {
  background: url(images/icons/pdf-thumbnail.svg);
  margin-left: 7%;
  background-repeat: no-repeat;
  background-size: 90px 90px;
  width: 100%;
  height: 90%;
  vertical-align: middle;
  margin-top: 7%;
  border: 0;
  background-color: #fff;
}

.excel-thumbnail {
  background: url(images/icons/excel-thumbnail.svg);
  margin-left: 7%;
  background-repeat: no-repeat;
  background-size: 75px 85px;
  width: 100%;
  height: 90%;
  vertical-align: middle;
  margin-top: 7%;
  border: 0;
  background-color: #fff;
}

.c-upload-form-input {
  font-size: 16px;
  line-height: 1.5;
  color: #445968;
  padding-left: 16px;
  width: 100%;
  height: 52px;
  padding: 0 8px;
  margin-bottom: 4px;
  border: 1px solid #80909b;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: inset 0 4px 0 0 #ebebeb;
}
@media (min-width: 768px) {
  .c-upload-form-input {
    height: 44px;
  }
}

.c-upload-form-input:focus {
  /*outline: 1px solid $blue-60 !important;
  outline: $spacer-1 auto -webkit-focus-ring-color !important;*/
  outline: none;
  border: 1px solid #0e75c4;
}

.c-upload-form-input:disabled {
  box-sizing: border-box;
  height: 44px;
  border: 1px solid #9dacb6;
  border-radius: 3px;
  background-color: rgba(196, 205, 212, 0.3);
  box-shadow: inset 0 4px 0 0 #DDDDDD;
  cursor: not-allowed;
}

.c-upload-form-label--semibold {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #445968;
}

.c-upload-form-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #213848;
}

.c-form-custom-checkbox > .checkmark--dark {
  top: 3px;
  border: 2px solid #80909b;
  border-radius: 3px;
  height: 18px;
  width: 18px;
}

.c-form-customCheckbox-label {
  display: inline-block;
  background-color: #e9f6fc;
  font-size: 22px;
  padding: 14px 16px 14px 43px;
  margin-left: 8px;
  font-weight: 600;
  border-radius: 3px;
  width: 100%;
}
@media (min-width: 768px) {
  .c-form-customCheckbox-label {
    width: 325px;
  }
}
.c-form-customCheckbox-label span {
  padding-left: 12px;
  font-size: 18px;
  color: #445968;
}

.c-form-custom-checkbox > .c-icon-electric--blue {
  background-position: left 20px bottom 17px;
}

.c-form-custom-checkbox > .c-icon-gas--blue {
  background-position: left 16px bottom 20px;
}

.c-form-custom-checkbox > .checkmark--modified {
  top: 16px;
}

.c-blue-btn {
  padding: 8px 16px;
  width: 100%;
  display: inline-block;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-blue-btn {
    width: 280px;
  }
}

.c-upload-form__error-message {
  color: #c1381b;
  font-size: 13px; /**As per UX team going forward all the error messges will have the mentioned variable having size 13px */
  margin-bottom: 0;
}

.c-upload-form-input--error {
  border: 1px solid #c1381b !important; /**to override the border on select as well hence applied important*/
}

/*------------------------------------*\
  #SDU DROPDOWN
\*------------------------------------*/
.c-dropdown-container--secondary .btn {
  font-size: 16px !important;
  line-height: 1.5;
  color: #80909b;
  width: 100%;
  height: 45px;
  border: 1px solid #687782;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: inset 0 -4px 0 0 #ebebeb !important;
}

/**Putting not important because the main.css is overriding with !important */
.c-dropdown-container--secondary .btn .btn-select {
  box-shadow: inset 0 -4px 0 0 #ebebeb !important;
}

.c-dropdown-container--secondary span .bootstrap-select.btn-group .dropdown-toggle .caret {
  border-left: 0;
}

.c-dropdown-container--secondary.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  vertical-align: middle;
  border: none;
  border-left: 0;
  color: #109de7;
  display: block;
  margin-top: -16px;
  height: 100%;
  min-height: 15px;
  width: 15px;
}

.c-dropdown-container--secondary .dropdown-toggle:focus {
  outline: 0 !important;
  border: 1px solid #0e75c4;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu.inner {
  background-color: #fff;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid #dbdee0;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li:hover {
  background-color: #e9f6fc;
  border: 1px solid #bde4f8;
}
.c-dropdown-container--secondary.btn-group .dropdown-menu li:hover a span.text {
  color: #1063a2;
  /*text-transform: lowercase;*/
}

.c-dropdown-container--secondary.btn-group .dropdown-toggle .filter-option {
  /*text-transform: lowercase;*/
  color: #445968;
}
.c-dropdown-container--secondary.btn-group .dropdown-toggle .filter-option:first-letter {
  text-transform: uppercase;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li:first-child {
  border-top: 1px solid #dbdee0;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li:last-child {
  border-bottom: 0;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li a:hover, .c-dropdown-container--secondary.btn-group .dropdown-menu li a:focus {
  text-decoration: none;
  background-color: transparent;
}

.c-dropdown-container--secondary.btn-group .dropdown-menu li a span.text {
  display: inline-block;
  font-size: 16px;
  color: #445968;
  /*text-transform: lowercase;*/
}
.c-dropdown-container--secondary.btn-group .dropdown-menu li a span.text:first-letter {
  text-transform: uppercase;
}

/*To Override the mobile styles by main.css*/
.c-dropdown-container--secondary.btn-group .dropdown-toggle .caret:after {
  content: url(images/Icons/icon-dropdown-arrow.svg) !important;
  margin-top: 3px;
  background-size: 1.5px 3.5px;
}

.c-dropdown-container--secondary > select.mobile-device {
  width: inherit;
  top: auto;
  left: auto;
  display: inline !important;
}

.c-dropdown-container--secondary > .btn-select {
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  font-size: 16px !important;
}

/*------------------------------------*\
  #PAGE
\*------------------------------------*/
/** Page Shell Layout */
.c-container, .c-container--pad0 {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.c-page {
  padding: 0;
  /*margin-bottom: $spacer-4;*/
  /* Small devices (tablets, 767px and below ) */
}
@media (min-width: 768px) {
  .c-page {
    padding: 8px 28px;
  }
}

.c-container {
  padding: 16px;
  margin-top: 10px; /**We dont have spacer variable for the mentioned PX**/
}

.c-container--pad0 {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .c-container--pad0 {
    margin-top: 0;
  }
}

.drop-panel {
  /*border-width: 3px;
  border-style: solid;
  border-color: blue;
  border-radius: 10px 10px 10px 10px;*/
  border: 2px solid #E7F3F3;
  border-radius: 8px;
  background-color: #FFFFFF;
}

#typeError {
  display: none;
  padding-left: 5%;
  padding-top: 2%;
  /*height: 21px;*/
  /*width: 513px;*/
  color: #C1381B;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 21px;
}

.dropzone-previews {
  border: none;
}

.c-address-label {
  height: 21px;
  width: 481px;
  color: #445968;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 21px;
}

.c-upload-your-document {
  height: 54px;
  width: 379px;
  color: #213848;
  font-family: "Open Sans";
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 54px;
}

#submitDocumentBtn:disabled {
  background-color: #dbdee0;
  box-shadow: 0 2px 0 0 #C3C8CB;
}

.glass-icon {
  left: -40px;
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  .address-search-text {
    width: 90%;
  }
}
.c-error-div {
  background-color: #fdeeea;
  color: #c1381b;
  line-height: 30px;
  height: 70px;
  font-size: 14px;
  text-align: left;
  margin-top: 20px;
}

#errorDivMsg {
  padding: 16px 0px 16px 16px;
}

/*------------------------------------*\
  #Messages
    Includes styling for warnings, success or error
\*------------------------------------*/
.c-progress-message {
  font-size: 14px;
  font-weight: 400;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border: 1px solid #fff;
  padding: 16px 24px;
}

/***to show the message in one line for the p tag comming from backend ***/
.c-progress-message p {
  display: inline;
}

.c-progress-message--error {
  background-color: #fdeeea;
  color: #c1381b;
}

.c-progress-message--success {
  background-color: #e7f7ed;
  color: #007129;
}

.c-progress-message--neutral {
  background-color: #e9f6fc;
  color: #1063a2;
}

.c-progress-message--alert {
  background-color: #fdf2ea;
  color: #9a4c10;
}

.c-progress-message--warning {
  font-size: 14px;
  font-weight: 400;
  color: #DA660C;
}

.c-progress-message--warningBox {
  font-size: 16px;
  color: #DA660C; /**for color variable Need to Discuss with the UX team*/
  background-color: #FEF8F4;
  padding: 8px 16px;
  border: 1px solid #FBD9C0;
}

.c-message--error {
  color: #c1381b;
  font-weight: 700;
  font-size: 16px;
}
