/*------------------------------------------------------------------------------
SECTIONS:
- Main
- Form/Input Elements
- Responsive Styles
------------------------------------------------------------------------------*/
/* USE WITH CAUTION */
/*Colors*/
/* Anchor colors <a href=""> */
/* Normal btn */
/* Disabled btn */
/* Back btn w/ arrow */
/* Form inputs */
/* Btn faux link -- for <button> meant to look like a normal link */
/* Other */
/* Autocomplete Widget */
/*Fonts*/
/*Fonts sizes*/
/*------------------------------------------------------------------------------
MAIN
------------------------------------------------------------------------------*/
body {
  background-color: #fff;
}

/*.test */
body#registration .regStep {
  display: inline-block;
  width: 100%;
}

li {
  color: #4d4d4d;
}

main .stage {
  margin: 20px auto 20px auto;
  width: 460px;
}
main .stage.wider {
  width: 800px;
}

p {
  color: #4d4d4d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
p.title {
  color: #000;
  font-size: 1.5rem;
}

ul {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 30px;
}
ul.noBullets {
  list-style: none;
  padding-left: 0;
}
ul#message {
  line-height: 20px;
  margin-bottom: 0;
}
ul#message li {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  margin-bottom: 5px;
  padding-left: 25px;
}
ul#message li.invalid {
  background-image: url("../v5images/x_gray-white.svg");
  color: #757575;
}
ul#message li.valid {
  background-image: url("../v5images/c_green-white.svg");
  color: #080;
}

.actionsBar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.actionsBar p {
  margin-bottom: 0;
}

.containerTitle {
  height: 100px;
  margin-bottom: 20px;
}
.containerTitle.noHeight {
  height: auto;
}
.containerTitle p {
  margin-bottom: 0;
}

.highlightBox {
  border: 2px solid #ccf1ff;
  border-radius: 10px;
  padding: 10px;
}
.highlightBox--withBg {
  background-color: #ccf1ff;
}

.icon {
  display: block;
  width: 50%;
}

.instructions {
  background: #f2f2f2;
  margin: 0 auto 5px auto;
  padding: 5px 10px;
}
.instructions p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.login-logo-main {
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  max-width: 500px;
  width: 100%;
}

.login-logos-secondary-container {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  /*max-width: 800px;*/
  width: 100%;
}
.login-logos-secondary-container__logo {
    height: 18px;
    width: auto;
}


#login-message-div {
    display: flex;
    justify-content: center;
    margin: 3rem;

    .login-message
    {
        /* borrowed from p tag */
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1rem;
        line-height: 1.5;
        /* box appearance */
        max-width: 1000px;
        min-width: 600px;
        padding: 10px;
        background-color: #fff3cd;
        border: 1px solid orange;
        border-radius: 10px;
        margin: 0;
        /* text appearance */
        font-weight: bold;
        color: red;
        white-space: pre-line;
        text-align: center;
    }
}

/*.login-logos-secondary-container__logo__toolbox {
    height: 18px;
    padding-top: 10px;
    padding-bottom: 12px;
    width: auto;
}*/

.moduleSegment {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
}

.noticeBar {
  background: #f00;
  color: #fff;
  padding-bottom: 5px;
  padding-top: 5px;
}
.noticeBar a:link,
.noticeBar a:visited {
  color: #fff;
  text-decoration: underline;
}

.progressBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5px;
  position: absolute;
  width: 100%;
}
.progressBar div {
  border-right: 2px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.progressBar div:last-child {
  border-right: 0;
}
.progressBar .off {
  background-color: #e6e6e6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.progressBar .on {
  background-color: #00a4e7;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.statusResultsErrorMessage,
.statusResultsProcessingMessage,
.statusResultsSuccessMessage {
  background: #d71e28;
  color: #fff;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 30px;
  left: 0;
  opacity: 0.95;
  padding-bottom: 5px;
  padding-top: 5px;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 999999;
}

.statusResultsErrorMessage #lnkErrorDismiss {
  color: #f4c2c5;
  cursor: pointer;
  margin-left: 5px;
  text-decoration: underline;
}
.statusResultsErrorMessage #lnkErrorDismiss:hover {
  text-decoration: none;
}

.subtitle {
  font-weight: bold;
}

/* This needs to be cleaned up */
.txtTwoFactorCode {
  margin-right: 0.5rem;
  width: 2rem !important;
}

a,
a:link,
a:visited {
  color: #00a4e7;
  text-decoration: none;
}

a:hover {
  color: #000;
  cursor: pointer;
  /*text-decoration: underline;*/
}

.ui-helper-hidden-accessible {
  display: none;
}

.ui-autocomplete {
  cursor: default;
  position: absolute;
}
.ui-autocomplete.ui-widget {
  background: #b3e9ff;
  border: 10px solid #b3e9ff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 180px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.ui-autocomplete.ui-widget li.ui-menu-item div {
  display: block;
  padding: 0 10px;
}
.ui-autocomplete.ui-widget li.ui-menu-item div:hover, .ui-autocomplete.ui-widget li.ui-menu-item div#ui-active-menuitem {
  background: #00a4e7;
  color: #fff;
  margin: 0;
}

.agentEntity {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e5f8ff;
  /*border: 1px solid #00a4e7;*/
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 1rem 0.5rem 1rem calc(0.5rem + 20px);
}
.agentEntity__name {
  margin-bottom: 0;
}
.agentEntity__choice {
  margin-bottom: 0;
  padding-right: calc(0.5rem + 20px);
}

#invitesList li {
  background-color: #b3e9ff;
  border-radius: 5px;
  line-height: 1.5;
  margin-bottom: 2px;
  padding: 5px 30px 5px 10px;
  position: relative;
}
#invitesList li:last-child {
  margin-bottom: 0;
}
#invitesList li.inviteFail {
  background-color: #fbb6b6;
  background-image: url(../v5images/e_white.svg);
  background-position: right 30px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
#invitesList li.inviteSuccess {
  background-color: #8de28d;
  background-image: url(../v5images/c_white.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
#invitesList li .btnCloseX {
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}

#registration header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #bfbfbf;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
}
#registration header p.support {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: right;
}
#registration header #logo {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#registration header #logo img {
  height: 35px;
  width: auto;
}

/*------------------------------------------------------------------------------
FORM/INPUT ELEMENTS
------------------------------------------------------------------------------*/
button {
  background-color: #00a4e7;
  border: 2px solid #00a4e7;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 0.875rem;
  padding: 5px;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
button[disabled], button.disallow {
  background-color: #ccc !important;
  border-color: #ccc !important;
}
button[disabled]:hover, button.disallow:hover {
  background-color: #ccc;
  cursor: default;
}
button.btnBack {
  background-color: #fff;
  background-image: url("../v5images/arr-left_blue.svg");
  background-position: left 10px center;
  background-repeat: no-repeat;
  background-size: 5px 10px;
  border-color: #00a4e7;
  color: #00a4e7;
  padding-left: 20px;
  padding-right: 10px;
}
button.btnBack:hover {
  color: #fff;
  background-image: url("../v5images/arr-left_white.svg");
  background-position: left 7px center;
}
button.nonUserDenyButton {
  background-color: #f00;
  border-color: #f00;
}
button.nonUserDenyButton:hover {
  background-color: #f66;
}
button.btnCenter {
  margin-left: auto;
  margin-right: auto;
}
button.btnCloseX {
  background-image: url(../v5images/x_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border-radius: 50px;
  height: 20px;
  width: 20px;
}
button.btnContinue {
  background-image: url("../v5images/arr-right_white.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 5px 10px;
  padding-left: 10px;
  padding-right: 20px;
}
button.btnContinue[disabled], button.btnContinue.disallow {
  background-image: none;
  padding-right: 10px;
}
button.btnContinue:hover {
  background-position: right 7px center;
}
button.btnLarge {
  font-size: 1.5rem;
}
button.link {
  background-color: transparent;
  border: 0;
  color: #00a4e7;
  padding-left: 0;
  padding-right: 0;
}
button.link:hover {
  background-color: transparent;
  color: #000;
}
button:hover {
  cursor: pointer;
  background-color: #1abeff;
  color: #fff;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

input[type=password],
input[type=text] {
  border: 2px solid #ccc;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  height: 36px;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
}
input[type=password].widthAuto,
input[type=text].widthAuto {
  width: auto;
}
input[type=password]:disabled,
input[type=text]:disabled {
  background-color: #e6e6e6;
  border-color: #ccc;
}

input[type=password] {
  padding-right: 10px; /* padding for 'show-hide' link */
}

label {
  display: block;
  line-height: 2;
}
label.inline-label {
  display: inline;
}

select {
  border: 2px solid #ccc;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  height: 36px;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
}

/* Custom radio button */
.checkmark {
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 25px;
  left: 0;
  position: absolute;
  top: calc(50% - 15px);
  width: 25px;
  /* Indicator (the dot/circle - hidden when not checked) */
}
.checkmark:after {
  content: "";
  display: none;
  position: absolute;
}

.customRadio {
  cursor: pointer;
  display: block;
  padding-left: 35px;
  position: relative;
}

.customRadio:hover input ~ .checkmark {
  background-color: #f2f2f2;
}

/* Hide browser's default radio button */
.customRadio input {
  cursor: pointer;
  opacity: 0;
  position: absolute;
}

.customRadio input:checked ~ .checkmark {
  background-color: #00a4e7;
}

/* Show indicator (dot) when checked */
.customRadio input:checked ~ .checkmark:after {
  display: block;
}

/* Style indicator (dot) */
.customRadio .checkmark:after {
  background: #fff;
  border-radius: 50%;
  height: 9px;
  left: 6px;
  top: calc(50% - 5px);
  width: 9px;
}

.invalid {
  color: #f00;
}

.passwordField {
  position: relative;
}
.passwordField button.link {
  min-height: inherit;
  padding: 0;
}
.passwordField .passwordShow {
  bottom: 10px;
  position: absolute;
  right: 10px;
}

.radioBtn {
  margin-bottom: 0;
}
.radioBtn label {
  display: inline-block;
}

.req {
  color: #f00;
}

.styled-checkbox:checked + .checkmark-custom + .service-content {
  background-color: #ccf1ff;
  border-color: #00a4e7;
}

.styled-checkbox:disabled + .checkmark-custom + .service-content {
  background-color: #e1e1e1;
  border-color: #b2b2b2;
  color: #6e6e6e;
  cursor: default;
}

.service-content {
  display: inline-block;
  cursor: pointer;
}
.service-content--no-cursor {
  cursor: auto;
}
.service-content .free-trial-badge {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
  background-color: #2196f3;
  border-radius: 2px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  height: 30px;
  /*letter-spacing: 1px;*/
  line-height: 1.25;
  padding: 0 5px;
  position: absolute;
  right: 20px;
  text-align: center;
  text-transform: uppercase;
  top: 25px;
  /*width: 100px;*/
}

.minorHeader {
  border-top: 1px dashed #ccc;
  font-size: 0.875rem;
  padding-top: 10px;
  text-align: center;
}

/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  /*padding-left: 35px;
  margin-bottom: 12px;*/
  line-height: 1.75;
  /*cursor: pointer;*/
  /*font-size: 22px;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark-custom {
  border-radius: 4px;
  position: absolute;
  top: calc(50% - 12.5px);
  left: 20px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark-custom {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark-custom {
  background-color: #2196F3;
}

.checkbox-container input:checked:disabled ~ .checkmark-custom {
  background-color: #b2b2b2;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-custom:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark-custom:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark-custom:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.individual-service-container {
  margin-bottom: 0;
  /*padding: 4px;*/
}
.individual-service-container label {
  font-size: 0.875rem;
}

.individual-service-container .service-content {
  border: 1px solid transparent;
  /*border-radius: 10px;*/
  padding: 20px 20px 20px 60px;
}
.individual-service-container .service-content--no-checkbox {
  padding-left: 20px;
}
.individual-service-container .service-content--no-top-bottom-padding {
  padding-bottom: 0;
  padding-top: 0;
}

.mainSelectionContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

.productsColumn {
  border: 1px solid #ccc;
  /*border-radius: 10px;*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /*height: 100%;*/
  margin: 0 10px;
  width: calc(100% - 20px) !important;
}
.productsColumn .customRadio input {
  cursor: auto;
}
.productsColumn .checkbox-container:hover input:disabled ~ .checkmark-custom {
  background-color: #eee;
}
.productsColumn--dimmed {
  opacity: 0.5;
}
.productsColumn--selected {
  background-color: #ccf1ff;
  border-color: #00a4e7;
}

.service-logo {
  margin-bottom: 1rem;
  height: 40px;
  width: auto;
}
.service-logo--no-margin {
  margin-bottom: 0;
}

.service-logo__toolbox {
    height: 18px;
    padding-top: 10px;
    padding-bottom: 12px;
    width: auto;
} 

.valAlert {
  color: #f00;
  display: block;
  font-size: 0.875rem;
  padding-left: 5px;
}

.alertBox,
.valAlertSummary {
  background: #ffe5e5;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0;
  margin-top: 1rem;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}
.alertBox p,
.valAlertSummary p {
  margin-bottom: 0;
}
.alertBox p.marginBottom1,
.valAlertSummary p.marginBottom1 {
  margin-bottom: 1rem;
}

.valid {
  color: #080;
}

/*------------------------------------------------------------------------------
RESPONSIVE STYLES
------------------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  main .stage.wider {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  main .stage {
    width: 90%;
  }
}