/* When adding fonts, ensure that the font-src is added to our Content Security Policy contained in app/csp.js.
   Failure to do so will cause error reporting issues in Sentry.
   It also wouldn't hurt to check in with the learner pod :) */
/* From: https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,900 */
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200;
  src: local('Nunito ExtraLight'), local('Nunito-ExtraLight'), url(https://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA-seUb-vIWzgPDEtj.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200;
  src: local('Nunito ExtraLight'), local('Nunito-ExtraLight'), url(https://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA-seUYevIWzgPDA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: local('Nunito Bold'), local('Nunito-Bold'), url(https://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAjsOUb-vIWzgPDEtj.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: local('Nunito Bold'), local('Nunito-Bold'), url(https://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAjsOUYevIWzgPDA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  src: local('Nunito ExtraBold'), local('Nunito-ExtraBold'), url(https://fonts.gstatic.com/s/nunito/v16/XRXW3I6Li01BKofAtsGUYevIWzgPDA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* google button */
@font-face {
  font-family: 'Roboto Bold';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Functions
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Code
*/
/* Functions --------------------------------------- */
.NoBoxShadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* Mixins --------------------------------------- */
.display-flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.display-inline-flex {
  display: -webkit-inline-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-inline-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-inline-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-inline-flex;
  /* NEW - Chrome */
  display: inline-flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-column {
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-row {
  -webkit-box-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-grow {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}
.font-family {
  font-family: "Helvetica Neue", Arial, sans-serif;
}
/* Base --------------------------------------- */
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: #2e3238;
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.loading {
  overflow-y: hidden;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1em;
}
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}
@media (min-width: 750px) {
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.66666666667%;
  }
  .two.columns {
    width: 13.3333333333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.6666666667%;
  }
  .five.columns {
    width: 39.3333333333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.6666666667%;
  }
  .eight.columns {
    width: 65.3333333333%;
  }
  .nine.columns {
    width: 74%;
  }
  .ten.columns {
    width: 82.6666666667%;
  }
  .eleven.columns {
    width: 91.3333333333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.6666666667%;
  }
  .two-thirds.column {
    width: 65.3333333333%;
  }
  .one-half.column {
    width: 48%;
  }
  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.66666666667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}
/* Typography --------------------------------------- */
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: bold;
  line-height: 1.25;
}
h1,
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a,
.fake-link {
  text-decoration: none;
  color: #0e9cc8;
  cursor: pointer;
}
a:hover,
.fake-link:hover {
  color: #0fa0ce;
}
a.secret-link {
  color: #2e3238;
}
a.secret-link:hover {
  color: #0fa0ce;
}
.no-link:hover {
  cursor: default;
}
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
form {
  margin: 0;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f1f1f1 inset !important;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="date"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="date"] {
  min-width: 60px;
}
input[type="checkbox"] {
  line-height: 1.5;
}
label,
legend {
  display: block;
  margin-bottom: 0.5rem;
}
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  box-shadow: none;
  font-size: 1.6rem;
  font-style: initial;
  line-height: 1.6;
}
input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #1abdef;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea,
select {
  height: 38px;
}
textarea {
  height: auto;
  resize: vertical;
}
input[disabled],
select[disabled] {
  color: #888;
  background-color: #faf9f6;
  pointer-events: none;
}
input.validation-error,
textarea.validation-error {
  border-color: #f5989d;
}
/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 1rem;
  text-align: left;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}
/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}
ul {
  padding: 0;
}
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}
/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
pre {
  line-height: 1.5;
  font-family: inherit;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  overflow: visible;
}
/* Helpers
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.hidden {
  display: none;
}
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}
.u-border-collapse {
  border-collapse: collapse;
}
/* Shared --------------------------------------- */
.full-screen {
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
}
#app-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
}
#app-container {
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-padding {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padded {
  padding: 0.75em 1em !important;
}
.padded-top {
  padding-top: 0.75em;
}
.padded-bottom {
  padding-bottom: 0.75em;
}
.padded-v {
  padding-top: 0.75em !important;
  padding-bottom: 0.75em !important;
}
.padded-h {
  padding-left: 1em !important;
  padding-right: 1em !important;
}
.double-padded-h {
  padding-left: 2em;
  padding-right: 2em;
}
.half-padded-h {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.double-padded-v {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}
.double-padded {
  padding: 2em;
}
.half-padded {
  padding: 0.5em;
}
.no-padding {
  padding: 0;
}
.space-below {
  margin-bottom: 1em;
}
.half-space-below {
  margin-bottom: 0.5em;
}
.tiny-space-below {
  margin-bottom: 0.1em;
}
.half-space-above {
  margin-top: 0.5em;
}
.space-above {
  margin-top: 1em;
}
.double-space-above {
  margin-top: 2em;
}
.double-space-below {
  margin-bottom: 2em;
}
.double-space-right {
  margin-right: 2em;
}
.no-margin {
  margin: 0;
}
.no-space-below {
  margin-bottom: 0em !important;
}
.no-space-above {
  margin-top: 0em;
}
.space-left {
  margin-left: 1em;
}
.half-space-left {
  margin-left: 0.5em;
}
.double-space-left {
  margin-left: 2em;
}
.space-right {
  margin-right: 1em;
}
.half-space-right {
  margin-right: 0.5em !important;
}
.space-around {
  margin: 1em;
}
.small-text {
  font-size: 0.8em;
}
.line-through {
  text-decoration: line-through;
}
.align-right {
  text-align: right;
}
.responsive-container {
  text-align: center;
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
}
.responsive-container button,
.responsive-container input[type="text"],
.responsive-container input[type="email"],
.responsive-container input[type="password"],
.responsive-container hr,
.responsive-container .spacer-text {
  margin-top: 1em;
  margin-bottom: 0em;
}
.alert {
  background-color: #faf2c7;
  color: #5f4f2a;
  padding: 0.5em 1em;
  border: 1px solid #f6e798;
  margin-bottom: 0.5em;
}
.message {
  background-color: #cccccc;
  text-align: center;
}
.message-error {
  color: red;
}
.message-reminder {
  background-color: #faf9f6;
  color: #2e3238;
  padding: 0.5em;
}
.not-bold {
  font-weight: normal;
}
.bold {
  font-weight: bold;
}
.semibold {
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", "TeXGyreHerosRegular", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
  font-weight: 500;
}
.light-font {
  font-weight: 300;
}
.italic {
  font-style: italic;
}
.danger {
  border-color: #d43f3a;
  color: #d43f3a !important;
}
.danger:hover {
  border-color: #ac2925;
  color: #ac2925 !important;
}
.nowrap {
  white-space: nowrap;
}
/* Loading --------------------------------------- */
.loading {
  color: #cccccc;
}
.detail .loading img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.display-block {
  display: block;
}
.display-content {
  display: contents;
}
/* Main --------------------------------------- */
.main {
  margin-top: 60px;
  margin-bottom: 80px;
  text-align: center;
}
.main h4 {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.5px;
  color: #333333;
}
@media (min-height: 700px) {
  .main {
    margin-top: 150px;
  }
}
a.disabled,
fieldset[disabled] a {
  opacity: 0.75;
  box-shadow: none;
  color: #6a7482;
  border-color: #ccc;
  pointer-events: none;
}
.email-preview {
  border-bottom: 1px solid #e5e5e5;
}
@media (min-width: 750px) {
  .email-preview textarea.custom-message {
    height: 6em !important;
  }
}
.headshot-image {
  border-radius: 100% 100%;
  background-size: cover;
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-position: center center;
  width: 125px;
  height: 125px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.headshot-image img {
  max-width: 125px;
  min-width: 125px;
  width: 100%;
}
.headshot-image.medium-image {
  width: 100px;
  height: 100px;
}
.headshot-image.medium-image img {
  max-width: 100px;
  min-width: 100px;
}
.headshot-image.small-image {
  width: 50px;
  height: 50px;
}
.headshot-image.small-image img {
  max-width: 50px;
  min-width: 50px;
}
.headshot-image.icon-image {
  height: 30px;
  width: 30px;
  border: 0;
  vertical-align: middle;
}
.headshot-image.icon-image img {
  max-width: 30px;
  min-width: 30px;
}
.headshot-image.inline-image {
  height: 22px;
  width: 22px;
  border: 0;
  vertical-align: middle;
}
.headshot-image.inline-image img {
  max-width: 22px;
  min-width: 22px;
}
.headshot-image.learner-avatar {
  background: none;
  border: 0;
}
div.nps-inputs {
  clear: both;
}
div.nps-inputs label {
  display: inline-flex;
  align-items: center;
  margin: 0 0.5em;
}
div.nps-inputs input {
  margin-right: 0.4em;
}
.nps-label {
  clear: both;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
@media (min-width: 550px) {
  div.nps-inputs {
    margin: 0 0.5em;
    clear: none;
  }
  .nps-label {
    clear: none;
  }
}
.white-fg {
  color: #fff;
  border-color: #fff;
}
.silver {
  color: #aaa;
}
.darkgray {
  color: #6a7482;
}
@media (min-width: 750px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 750px)  {
  .desktop-only,
  .featured-card.desktop-only {
    display: none !important;
  }
}
.full-width-mobile {
  width: 100%;
}
@media (min-width: 750px) {
  .full-width-mobile {
    width: auto;
  }
}
@media (min-width: 750px) {
  .full-width-desktop {
    width: 100%;
  }
}
.flex-wrap-mobile {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 750px) {
  .flex-wrap-mobile {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.flex-no-shrink {
  flex-shrink: 0;
}
.overflow-auto {
  overflow: auto;
}
/* Copied from Bootstrap ------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.circle-image {
  border-radius: 100% 100%;
  background-size: cover;
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-position: center center;
  width: 125px;
  height: 125px;
  overflow: hidden;
  margin: 0 auto;
}
.circle-image img {
  max-width: 100px;
  min-width: 100px;
}
.user-img-icon {
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-size: cover;
}
.rounded-img {
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
/* editable text */
.editable-input-container input {
  max-width: 100%;
}
.editable-input-container textarea {
  width: 100%;
}
.editable-text-help {
  color: #aaa;
}
.editable-label-container {
  text-align: left;
}
@media (min-width: 750px) {
  .editable-label-container {
    text-align: right;
    margin-top: 0.25em;
  }
}
.show-max-two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  max-height: 3.2em;
  /* fallback */
}
.wrap-children {
  overflow-wrap: break-word;
}
.doc-page {
  text-align: left;
  padding-bottom: 60px;
}
.doc-page strong {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 0;
}
.doc-page h2 {
  font-weight: 300;
  margin-bottom: 20px;
}
.doc-page p {
  margin-bottom: 20px;
}
.doc-page h3 {
  margin-bottom: 20px;
}
.doc-page h5 {
  font-weight: bold;
}
.doc-page .quick-links {
  margin-top: 40px;
}
.doc-page .quick-links ul {
  list-style-type: none;
}
.doc-page .quick-links a {
  color: #a6a6a6;
}
.doc-page .quick-links a:hover {
  color: #6a6a6a;
}
.page-title {
  text-align: left;
  padding-bottom: 0.5em;
  margin: 0;
  font-size: 1.5em;
}
@media (min-width: 750px) {
  .page-title {
    font-size: 2em;
  }
}
.box-shadow {
  -webkit-box-shadow: 0px 0px 4em rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 4em rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 4em rgba(0, 0, 0, 0.1);
}
.sticky-mobile {
  position: fixed;
  bottom: 0;
  z-index: 100;
  left: 0;
  right: 0;
  border-top: 1px solid #aaa;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 1em #666;
  -moz-box-shadow: 0px 0px 1em #666;
  box-shadow: 0px 0px 1em #666;
}
.bordered {
  border: 1px solid #e5e5e5 !important;
}
.round-bordered {
  border: 1px solid #e5e5e5 !important;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
.double-bordered {
  border: 2px solid #e5e5e5;
}
.bordered-bottom {
  border-bottom: 1px solid #e5e5e5;
}
.bordered-left {
  border-left: 1px solid #e5e5e5;
}
.bordered-right {
  border-right: 1px solid #e5e5e5;
}
.nav-border-bottom {
  border-bottom: 1px solid #ddd;
}
.bordered-top {
  border-top: 1px solid #e5e5e5;
}
.fat-border-left {
  border-left: 4px solid #e5e5e5;
  padding-left: 1em;
}
.no-border-first-child:first-child {
  border: none;
}
.share-popover {
  z-index: 3000;
}
.share-popover .Popover-body {
  background-color: #444;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 300;
}
.share-popover .Popover-tipShape {
  fill: #444;
}
.inline-block {
  display: inline-block;
}
.profile-photo-icon {
  border-radius: 25px;
}
.center-text {
  text-align: center;
}
.clickable {
  cursor: pointer;
}
.spacer-column {
  height: 1px;
}
@media (min-width: 750px) {
  .spacer-column {
    display: initial;
  }
}
.double-line-height {
  line-height: 2em;
}
.single-line-height {
  line-height: 1em;
}
.double-min-height {
  min-height: 2em;
}
.center-items {
  align-items: center;
}
.align-start-items {
  align-items: flex-start;
}
.align-end-items {
  align-items: flex-end;
}
.centered-flex-container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.flex-centered-column {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.flex-column-end {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.full-height-spaced-flex-column {
  min-height: 100%;
  flex: 1;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}
.flex-centered-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.flex-stretch-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.flex-stretch-column {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.justify-flex-start {
  justify-content: flex-start;
}
.justify-flex-end {
  justify-content: flex-end;
}
.justify-space-around {
  justify-content: space-around;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.half-width-mobile {
  width: 50%;
}
@media (min-width: 750px) {
  .half-width-mobile {
    width: auto;
  }
}
.star-ratings {
  white-space: nowrap;
  vertical-align: text-bottom;
}
.left-text {
  text-align: left;
}
.initial-list-style-type {
  list-style-type: initial;
}
.centered-banner {
  text-align: center;
  padding-top: 3em;
  padding-bottom: 3em;
}
.centered-padded-banner {
  text-align: center;
  padding-top: 3em;
  padding-bottom: 3em;
  padding-left: 1em !important;
  padding-right: 1em !important;
}
.centered-container-banner {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1em;
  text-align: center;
  padding-top: 3em;
  padding-bottom: 3em;
}
.container-column,
.container-column-padded,
.wide-container-column {
  max-width: 750px;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.wide-container-column {
  max-width: 1000px;
}
.container-column-padded {
  padding-left: 1em;
  padding-right: 1em;
}
@media (min-width: 750px) {
  .container-column-padded {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.17);
}
.card-shadow {
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.15));
}
.white-bg {
  background-color: #fff;
}
.gray-bg {
  background-color: #fafafa;
}
.cream-bg {
  background-color: #faf9f6;
}
.green-promo {
  background-color: #29a877;
  color: #fff;
  border-color: #fff;
}
.green-promo a {
  color: #fff;
  border-color: #fff;
}
.subheader-bg {
  background-color: #f1f2f3;
}
.header-bg {
  background-color: #105cb3;
}
.border-bg {
  background-color: #e5e5e5;
}
.highlight-red-fg {
  color: #db6c79;
}
.highlight-orange-fg {
  color: #feab6d;
}
.highlight-green-fg {
  color: #29a877;
}
.white-links a,
a.white-links {
  color: white;
}
.white-links a:hover,
a.white-links:hover {
  color: #2ba7ce;
}
.green-links a,
a.green-links {
  color: #1f7f5a;
}
.red-links a,
a.red-links {
  color: #db6c79;
}
.seasonal-promo {
  background-color: #29a877;
  color: #fff;
  border-color: #fff;
  text-align: center;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.seasonal-promo a {
  color: #fff;
  border-color: #fff;
}
.seasonal-promo a {
  text-decoration: underline;
}
@media print {
  .seasonal-promo {
    display: none;
  }
}
.company-page .seasonal-promo {
  display: none;
}
.map {
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  min-height: 135px;
  background-position: center center;
  background-repeat: no-repeat;
}
.map.link:hover {
  cursor: pointer;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.fading-gradient {
  position: relative;
  max-height: 8em;
  overflow: hidden;
}
.fading-gradient:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  pointer-events: none;
  /* so the text is still selectable */
}
.fading-to-white:after {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 20%, #fff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 20%, #fff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, #fff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  /* IE6-9 */
}
.fading-to-gray:after {
  background: -moz-linear-gradient(top, rgba(241, 242, 243, 0) 20%, #f1f2f3 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(241, 242, 243, 0) 20%, #f1f2f3 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(241, 242, 243, 0) 20%, #f1f2f3 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  /* IE6-9 */
}
.search-filters {
  top: 0px;
  z-index: 200;
  background-color: #fafafa;
  box-shadow: 0 1px 0 0 #eee;
  border-top: 1px solid #e5e5e5;
}
.tight-table td,
.tight-table th {
  padding: 0.5em 0.5em;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-sticky {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
}
.full-width-video-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}
.full-width-video-iframe-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.open > .dropdown-menu {
  display: block !important;
}
.hide {
  visibility: hidden;
}
.no-scroll-bar {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.no-scroll-bar::-webkit-scrollbar {
  display: none;
}
.sidebar-list {
  overflow: auto;
  border: 1px solid #e5e5e5;
  border-right: none;
  background-color: #fafafa;
  flex-shrink: 0;
}
.sidebar-list-item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  padding: 1em;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: -1px;
}
.sidebar-list-item:hover:not(.sidebar-list-item-active) {
  background-color: #fcfcfc;
}
.sidebar-list-item-active {
  background-color: #fff;
}
.team-members .team-name {
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", "TeXGyreHerosRegular", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
  font-weight: 500;
  color: #2e3238;
  margin-top: 0.5em;
}
.team-members .team-title {
  color: gray;
  margin-bottom: 0.5em;
}
.classrequestform div.action-buttons {
  border-top: 1px solid #e5e5e5;
}
.user-info .inset-checkbox input {
  margin-right: 0.25em;
}
.user-info .progress-percent-bar {
  max-width: 280px;
}
@media (min-width: 750px) {
  .user-info .progress-percent-bar {
    max-width: 400px;
  }
}
.user-info .progress-percent-span {
  max-width: 280px;
  font-size: 0.7em;
  top: -2.7em;
  display: block;
  position: relative;
  height: 0;
  text-align: center;
  color: white;
}
@media (min-width: 750px) {
  .user-info .progress-percent-span {
    max-width: 400px;
    font-size: 1em;
    top: -2.4em;
  }
}
.full-screen-vh {
  /* bit of a CSS hack to get full height layout working */
  height: 100vh;
}
.full-height-layout #app-main {
  /* bit of a CSS hack to get full height layout working */
  height: 100vh;
}
.full-height-layout #app-container {
  /* bit of a CSS hack to get full height layout working */
  height: 100vh;
}
.wizard-title {
  padding: 0.5em;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}
.wizard-title .wizard-back {
  float: left;
  margin-right: 1em;
  text-decoration: none;
  color: #0e9cc8;
  cursor: pointer;
}
.wizard-title:after {
  content: "";
  display: table;
  clear: both;
}
form.wizard-screen {
  min-height: 100%;
  flex: 1;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}
.wizard-content,
.wizard-footer {
  padding: 1em;
}
.wizard-progress-label {
  text-align: right;
}
.wizard-progress-outer {
  margin-bottom: 0.5em;
  height: 0.5em;
  background-color: #faf9f6;
}
.wizard-progress-inner {
  height: 100%;
  background-color: #d1d1d1;
}
@media (min-width: 750px) {
  .wizard-title,
  .wizard-content,
  .wizard-footer {
    width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  form.wizard-screen {
    display: block;
  }
  .wizard-title {
    border-bottom: none;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  .wizard-footer {
    margin-top: 1em;
  }
}
tr.highlight-hover:hover {
  background-color: #f1f2f3;
  cursor: pointer;
}
tr td {
  border-bottom: 1px solid #dddfe3;
}
.DayPickerInput-OverlayWrapper {
  position: static;
}
.DayPickerInput-Overlay {
  position: absolute;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  max-width: 100%;
  z-index: 2;
  max-height: calc(100vh - 220px);
  left: 1em;
  right: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  box-shadow: none;
  margin-top: 0.5em;
}
.DayPicker {
  font-size: 2rem;
  z-index: 0;
}
.DayPicker-Caption > div {
  font-size: inherit;
}
.DayPicker-Day {
  padding: 0.3em 0.5em;
}
.DayPickerInput {
  flex: 1;
}
.DayPickerInput input {
  width: 100%;
}
.DayPicker-Day--beforeToday {
  text-decoration: line-through;
}
.DayPicker-Day--start:not(.DayPicker-Day--selected),
.DayPicker-Day--end:not(.DayPicker-Day--selected) {
  background-color: #ddd !important;
}
.DayPicker-Day--beforeToday {
  pointer-events: none;
}
.DayPicker-Day--range:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
  border-radius: 0;
  background-color: #cbe9f2;
  color: #2e3238;
}
.DayPicker-Day:not(.DayPicker-Day--outside).DayPicker-Day--start,
.DayPicker-Day:not(.DayPicker-Day--outside).DayPicker-Day--end {
  background-color: #255dad;
}
.DayPicker-Day:not(.DayPicker-Day--outside).DayPicker-Day--selected.DayPicker-Day--beforeToday {
  background-color: #dddfe3;
  color: white;
}
.DayPicker-Day:not(.DayPicker-Day--outside).DayPicker-Day--selected.DayPicker-Day--beforeToday.DayPicker-Day--end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.DayPicker-Day:not(.DayPicker-Day--outside).DayPicker-Day--selected.DayPicker-Day--beforeToday.DayPicker-Day--start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.DayPicker-Day:not(.DayPicker-Day--outside):not(.DayPicker-Day--beforeToday).DayPicker-Day--start:not(.DayPicker-Day--end) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.DayPicker-Day:not(.DayPicker-Day--outside):not(.DayPicker-Day--beforeToday).DayPicker-Day--end:not(.DayPicker-Day--start) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* Enroll Form --------------------------------------- */
.enrollform {
  align-items: flex-start;
}
.enrollform input,
.enrollform textarea,
.enrollform input:focus,
.enrollform textarea:focus,
.enrollform select,
.enrollform select:focus {
  border-width: 1px;
  color: #2e3238;
}
.enrollform .inputs {
  margin-left: 0;
  padding: 0;
}
.enrollform .inputs label.not-bold {
  margin-top: 0.5em;
}
.enrollform .inputs input[type="checkbox"] {
  margin-right: 0.5em;
}
.enrollform .inputs textarea {
  height: 4.5em;
}
.enrollform .inputs textarea:focus {
  border-color: #0e9cc8;
}
.enrollform .inputs input.validation-error,
.enrollform .inputs textarea.validation-error,
.enrollform .inputs select.validation-error {
  border-color: #f5989d;
}
.enrollform h4 {
  font-size: 16px;
}
.enrollform td {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}
.enrollform td.price {
  text-align: right;
}
.enrollform pre {
  padding: 0;
  margin: 0;
}
.enrollform div.action-buttons {
  border-top: 1px solid #e5e5e5;
}
.enrollform .thumbnail-image {
  width: 5em;
  min-width: 5em;
  height: 5em;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  background-size: cover;
}
.enrollform .pricing {
  margin-top: 1em;
  border-top: 1px solid #e5e5e5;
  padding: 0.5em 0;
}
.enrollform .pricing table {
  color: #888;
}
.enrollform .pricing table th,
.enrollform .pricing table td {
  padding: 0.25em 0;
}
.enrollform .pricing .total {
  color: #2e3238;
}
.enrollform .alert {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.enrollform .ef-button-link {
  font-size: 1.4rem;
  font-weight: 700;
}
.enrollform .ef-button-link-secondary {
  font-size: 1.4rem;
  font-weight: 500;
}
.enrollform .ef-button-link-toggle {
  font-size: 1.4rem;
  font-weight: 700;
}
.enrollform .ef-button-link-toggle.toggled,
.enrollform .ef-button-link-toggle.toggled:active,
.enrollform .ef-button-link-toggle.toggled:focus:not(.disabled) {
  pointer-events: none;
  color: #474e57;
}
.enroll-confirm h4 {
  padding-bottom: 0.5em;
}
@media (min-width: 750px) {
  .enrollform .detail .help {
    display: table;
  }
  .enrollform .inputs textarea {
    height: 4.5em;
  }
  .enrollform .thumbnail-image {
    margin-right: 1em;
  }
  .enrollform .inputs {
    padding: 0;
  }
  .enrollform .inputs .row {
    margin-right: 0;
  }
}

.button-3Fieu {
  position: relative;
  font-family: "Helvetica Neue", Arial, serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  text-transform: none;
  height: auto;
  max-width: 100%;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  transition: all 0.15s;
  line-height: 1.2;
}
.raised-OKA78 {
  font-weight: 500;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  transition: all ease-in-out 0.05s;
}
.raised-OKA78.small-VXvDs {
  padding: 0.5em 0.9em;
  font-size: 1.4rem;
}
.raised-OKA78.small-VXvDs.round-2ly0W {
  width: 2.7rem;
  height: 2.7rem;
}
.raised-OKA78.medium-farUJ {
  padding: 0.8em 1.4em;
  font-size: 1.6rem;
}
.raised-OKA78.medium-farUJ.round-2ly0W {
  width: 3.65rem;
  height: 3.65rem;
}
.raised-OKA78.large-2WbQ- {
  padding: 1em 2.2em;
  font-size: 2rem;
}
.raised-OKA78.large-2WbQ-.round-2ly0W {
  width: 4.8rem;
  height: 4.8rem;
}
.raised-OKA78.wide-3LtTx {
  width: 152px;
}
.raised-OKA78.round-2ly0W {
  border-radius: 50%;
  padding: 0;
}
.raised-OKA78.primary-1ZwJX {
  background-color: #255dad;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.primary-1ZwJX:hover:not(.disabled-33iqX),
.raised-OKA78.primary-1ZwJX:focus:not(.disabled-33iqX) {
  background-color: #215298;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.primary-1ZwJX:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #1e4b8b;
}
.raised-OKA78.primary-1ZwJX.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.raised-OKA78.primary-1ZwJX.inverted-1KhI2 {
  background-color: #ffffff;
  border-color: rgba(37, 93, 173, 0.25);
  color: #1c4683;
}
.raised-OKA78.primary-1ZwJX.inverted-1KhI2:hover:not(.disabled-33iqX),
.raised-OKA78.primary-1ZwJX.inverted-1KhI2:focus:not(.disabled-33iqX) {
  background-color: #f2f2f2;
  border-color: rgba(37, 93, 173, 0.25);
  color: #1c4683;
}
.raised-OKA78.primary-1ZwJX.inverted-1KhI2:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ebebeb;
}
.raised-OKA78.confirm-1sO6S {
  background-color: #29a877;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.confirm-1sO6S:hover:not(.disabled-33iqX),
.raised-OKA78.confirm-1sO6S:focus:not(.disabled-33iqX) {
  background-color: #249468;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.confirm-1sO6S:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #218760;
}
.raised-OKA78.confirm-1sO6S.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.raised-OKA78.cancel-196FV {
  background-color: #6a7482;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.cancel-196FV:hover:not(.disabled-33iqX),
.raised-OKA78.cancel-196FV:focus:not(.disabled-33iqX) {
  background-color: #5f6774;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.cancel-196FV:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #58606c;
}
.raised-OKA78.cancel-196FV.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.raised-OKA78.secondary-2r6Xe {
  background-color: #ffffff;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
  border: 1px solid rgba(37, 93, 173, 0.25);
}
.raised-OKA78.secondary-2r6Xe:hover:not(.disabled-33iqX),
.raised-OKA78.secondary-2r6Xe:focus:not(.disabled-33iqX) {
  background-color: #f4fbfd;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
}
.raised-OKA78.secondary-2r6Xe:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ebebeb;
}
.raised-OKA78.secondary-2r6Xe.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.raised-OKA78.secondary-2r6Xe.inverted-1KhI2 {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  box-shadow: none;
}
.raised-OKA78.secondary-2r6Xe.inverted-1KhI2:hover:not(.disabled-33iqX),
.raised-OKA78.secondary-2r6Xe.inverted-1KhI2:focus:not(.disabled-33iqX) {
  background-color: rgba(242, 242, 242, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.raised-OKA78.secondary-2r6Xe.inverted-1KhI2:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: rgba(235, 235, 235, 0.2);
}
.raised-OKA78.secondary-2r6Xe.inverted-1KhI2.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.raised-OKA78.tertiary-2Xj3X {
  background-color: #ffffff;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
  box-shadow: 0 4px 10px rgba(62, 90, 130, 0.1);
}
.raised-OKA78.tertiary-2Xj3X:hover:not(.disabled-33iqX),
.raised-OKA78.tertiary-2Xj3X:focus:not(.disabled-33iqX) {
  background-color: #f2f2f2;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
}
.raised-OKA78.tertiary-2Xj3X:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ebebeb;
}
.raised-OKA78.danger-W4Ynu {
  background-color: #f15d5d;
  border-color: rgba(37, 93, 173, 0.25);
  color: #ffffff;
}
.raised-OKA78.danger-W4Ynu:hover:not(.disabled-33iqX),
.raised-OKA78.danger-W4Ynu:focus:not(.disabled-33iqX) {
  background-color: #ef4646;
  border-color: rgba(37, 93, 173, 0.25);
  color: #ffffff;
}
.raised-OKA78.danger-W4Ynu:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ee3737;
}
.raised-OKA78.danger-W4Ynu.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.raised-OKA78.facebook-1SYZM {
  background-color: #4267b2;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
  box-shadow: 0 4px 10px rgba(66, 103, 178, 0.35);
}
.raised-OKA78.facebook-1SYZM:hover:not(.disabled-33iqX),
.raised-OKA78.facebook-1SYZM:focus:not(.disabled-33iqX) {
  background-color: #3b5c9f;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.facebook-1SYZM:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #375694;
}
.raised-OKA78.google-1KR11 {
  background-color: #4285f4;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
  box-shadow: 0 4px 10px rgba(66, 103, 178, 0.35);
}
.raised-OKA78.google-1KR11:hover:not(.disabled-33iqX),
.raised-OKA78.google-1KR11:focus:not(.disabled-33iqX) {
  background-color: #2a75f3;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.google-1KR11:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #1b6cf2;
}
.raised-OKA78.black-x815E {
  background-color: #000000;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
  box-shadow: 0 4px 10px rgba(66, 103, 178, 0.35);
}
.raised-OKA78.black-x815E:hover:not(.disabled-33iqX),
.raised-OKA78.black-x815E:focus:not(.disabled-33iqX) {
  background-color: #000000;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.raised-OKA78.black-x815E:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #000000;
}
.raised-OKA78:after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: -1;
  border-radius: 15px;
}
.raised-OKA78:active:not(.disabled-33iqX) {
  box-shadow: none;
}
.raised-OKA78.primary-1ZwJX {
  box-shadow: 0 4px 10px rgba(37, 93, 173, 0.35);
}
.raised-OKA78.primary-1ZwJX.inverted-1KhI2 {
  box-shadow: 0 4px 10px rgba(46, 50, 56, 0.35);
}
.raised-OKA78.confirm-1sO6S {
  box-shadow: 0 4px 10px rgba(41, 168, 119, 0.35);
}
.raised-OKA78.secondary-2r6Xe {
  box-shadow: 0 4px 10px rgba(62, 90, 130, 0.1);
}
.contained-2sz3n,
.pill-TvEcG {
  font-weight: 500;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  transition: all ease-in-out 0.05s;
}
.contained-2sz3n.small-VXvDs,
.pill-TvEcG.small-VXvDs {
  padding: 0.5em 0.9em;
  font-size: 1.4rem;
}
.contained-2sz3n.small-VXvDs.round-2ly0W,
.pill-TvEcG.small-VXvDs.round-2ly0W {
  width: 2.7rem;
  height: 2.7rem;
}
.contained-2sz3n.medium-farUJ,
.pill-TvEcG.medium-farUJ {
  padding: 0.8em 1.4em;
  font-size: 1.6rem;
}
.contained-2sz3n.medium-farUJ.round-2ly0W,
.pill-TvEcG.medium-farUJ.round-2ly0W {
  width: 3.65rem;
  height: 3.65rem;
}
.contained-2sz3n.large-2WbQ-,
.pill-TvEcG.large-2WbQ- {
  padding: 1em 2.2em;
  font-size: 2rem;
}
.contained-2sz3n.large-2WbQ-.round-2ly0W,
.pill-TvEcG.large-2WbQ-.round-2ly0W {
  width: 4.8rem;
  height: 4.8rem;
}
.contained-2sz3n.wide-3LtTx,
.pill-TvEcG.wide-3LtTx {
  width: 152px;
}
.contained-2sz3n.round-2ly0W,
.pill-TvEcG.round-2ly0W {
  border-radius: 50%;
  padding: 0;
}
.contained-2sz3n.primary-1ZwJX,
.pill-TvEcG.primary-1ZwJX {
  background-color: #255dad;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.primary-1ZwJX:hover:not(.disabled-33iqX),
.pill-TvEcG.primary-1ZwJX:hover:not(.disabled-33iqX),
.contained-2sz3n.primary-1ZwJX:focus:not(.disabled-33iqX),
.pill-TvEcG.primary-1ZwJX:focus:not(.disabled-33iqX) {
  background-color: #215298;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.primary-1ZwJX:active:not(.disabled-33iqX),
.pill-TvEcG.primary-1ZwJX:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #1e4b8b;
}
.contained-2sz3n.primary-1ZwJX.disabled-33iqX,
.pill-TvEcG.primary-1ZwJX.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.contained-2sz3n.primary-1ZwJX.inverted-1KhI2,
.pill-TvEcG.primary-1ZwJX.inverted-1KhI2 {
  background-color: #ffffff;
  border-color: rgba(37, 93, 173, 0.25);
  color: #1c4683;
}
.contained-2sz3n.primary-1ZwJX.inverted-1KhI2:hover:not(.disabled-33iqX),
.pill-TvEcG.primary-1ZwJX.inverted-1KhI2:hover:not(.disabled-33iqX),
.contained-2sz3n.primary-1ZwJX.inverted-1KhI2:focus:not(.disabled-33iqX),
.pill-TvEcG.primary-1ZwJX.inverted-1KhI2:focus:not(.disabled-33iqX) {
  background-color: #f2f2f2;
  border-color: rgba(37, 93, 173, 0.25);
  color: #1c4683;
}
.contained-2sz3n.primary-1ZwJX.inverted-1KhI2:active:not(.disabled-33iqX),
.pill-TvEcG.primary-1ZwJX.inverted-1KhI2:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ebebeb;
}
.contained-2sz3n.confirm-1sO6S,
.pill-TvEcG.confirm-1sO6S {
  background-color: #29a877;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.confirm-1sO6S:hover:not(.disabled-33iqX),
.pill-TvEcG.confirm-1sO6S:hover:not(.disabled-33iqX),
.contained-2sz3n.confirm-1sO6S:focus:not(.disabled-33iqX),
.pill-TvEcG.confirm-1sO6S:focus:not(.disabled-33iqX) {
  background-color: #249468;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.confirm-1sO6S:active:not(.disabled-33iqX),
.pill-TvEcG.confirm-1sO6S:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #218760;
}
.contained-2sz3n.confirm-1sO6S.disabled-33iqX,
.pill-TvEcG.confirm-1sO6S.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.contained-2sz3n.cancel-196FV,
.pill-TvEcG.cancel-196FV {
  background-color: #6a7482;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.cancel-196FV:hover:not(.disabled-33iqX),
.pill-TvEcG.cancel-196FV:hover:not(.disabled-33iqX),
.contained-2sz3n.cancel-196FV:focus:not(.disabled-33iqX),
.pill-TvEcG.cancel-196FV:focus:not(.disabled-33iqX) {
  background-color: #5f6774;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.cancel-196FV:active:not(.disabled-33iqX),
.pill-TvEcG.cancel-196FV:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #58606c;
}
.contained-2sz3n.cancel-196FV.disabled-33iqX,
.pill-TvEcG.cancel-196FV.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.contained-2sz3n.secondary-2r6Xe,
.pill-TvEcG.secondary-2r6Xe {
  background-color: #ffffff;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
  border: 1px solid rgba(37, 93, 173, 0.25);
}
.contained-2sz3n.secondary-2r6Xe:hover:not(.disabled-33iqX),
.pill-TvEcG.secondary-2r6Xe:hover:not(.disabled-33iqX),
.contained-2sz3n.secondary-2r6Xe:focus:not(.disabled-33iqX),
.pill-TvEcG.secondary-2r6Xe:focus:not(.disabled-33iqX) {
  background-color: #f4fbfd;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
}
.contained-2sz3n.secondary-2r6Xe:active:not(.disabled-33iqX),
.pill-TvEcG.secondary-2r6Xe:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ebebeb;
}
.contained-2sz3n.secondary-2r6Xe.disabled-33iqX,
.pill-TvEcG.secondary-2r6Xe.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.contained-2sz3n.secondary-2r6Xe.inverted-1KhI2,
.pill-TvEcG.secondary-2r6Xe.inverted-1KhI2 {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  box-shadow: none;
}
.contained-2sz3n.secondary-2r6Xe.inverted-1KhI2:hover:not(.disabled-33iqX),
.pill-TvEcG.secondary-2r6Xe.inverted-1KhI2:hover:not(.disabled-33iqX),
.contained-2sz3n.secondary-2r6Xe.inverted-1KhI2:focus:not(.disabled-33iqX),
.pill-TvEcG.secondary-2r6Xe.inverted-1KhI2:focus:not(.disabled-33iqX) {
  background-color: rgba(242, 242, 242, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.contained-2sz3n.secondary-2r6Xe.inverted-1KhI2:active:not(.disabled-33iqX),
.pill-TvEcG.secondary-2r6Xe.inverted-1KhI2:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: rgba(235, 235, 235, 0.2);
}
.contained-2sz3n.secondary-2r6Xe.inverted-1KhI2.disabled-33iqX,
.pill-TvEcG.secondary-2r6Xe.inverted-1KhI2.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.contained-2sz3n.tertiary-2Xj3X,
.pill-TvEcG.tertiary-2Xj3X {
  background-color: #ffffff;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
  box-shadow: 0 4px 10px rgba(62, 90, 130, 0.1);
}
.contained-2sz3n.tertiary-2Xj3X:hover:not(.disabled-33iqX),
.pill-TvEcG.tertiary-2Xj3X:hover:not(.disabled-33iqX),
.contained-2sz3n.tertiary-2Xj3X:focus:not(.disabled-33iqX),
.pill-TvEcG.tertiary-2Xj3X:focus:not(.disabled-33iqX) {
  background-color: #f2f2f2;
  border-color: rgba(37, 93, 173, 0.25);
  color: #255dad;
}
.contained-2sz3n.tertiary-2Xj3X:active:not(.disabled-33iqX),
.pill-TvEcG.tertiary-2Xj3X:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ebebeb;
}
.contained-2sz3n.danger-W4Ynu,
.pill-TvEcG.danger-W4Ynu {
  background-color: #f15d5d;
  border-color: rgba(37, 93, 173, 0.25);
  color: #ffffff;
}
.contained-2sz3n.danger-W4Ynu:hover:not(.disabled-33iqX),
.pill-TvEcG.danger-W4Ynu:hover:not(.disabled-33iqX),
.contained-2sz3n.danger-W4Ynu:focus:not(.disabled-33iqX),
.pill-TvEcG.danger-W4Ynu:focus:not(.disabled-33iqX) {
  background-color: #ef4646;
  border-color: rgba(37, 93, 173, 0.25);
  color: #ffffff;
}
.contained-2sz3n.danger-W4Ynu:active:not(.disabled-33iqX),
.pill-TvEcG.danger-W4Ynu:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #ee3737;
}
.contained-2sz3n.danger-W4Ynu.disabled-33iqX,
.pill-TvEcG.danger-W4Ynu.disabled-33iqX {
  background: #f3f3f4;
  color: #b6bcc4;
  cursor: not-allowed;
  text-shadow: none;
  box-shadow: 0 4px 10px transparent;
  border: 1px solid #b6bcc4;
}
.contained-2sz3n.facebook-1SYZM,
.pill-TvEcG.facebook-1SYZM {
  background-color: #4267b2;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
  box-shadow: 0 4px 10px rgba(66, 103, 178, 0.35);
}
.contained-2sz3n.facebook-1SYZM:hover:not(.disabled-33iqX),
.pill-TvEcG.facebook-1SYZM:hover:not(.disabled-33iqX),
.contained-2sz3n.facebook-1SYZM:focus:not(.disabled-33iqX),
.pill-TvEcG.facebook-1SYZM:focus:not(.disabled-33iqX) {
  background-color: #3b5c9f;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.facebook-1SYZM:active:not(.disabled-33iqX),
.pill-TvEcG.facebook-1SYZM:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #375694;
}
.contained-2sz3n.google-1KR11,
.pill-TvEcG.google-1KR11 {
  background-color: #4285f4;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
  box-shadow: 0 4px 10px rgba(66, 103, 178, 0.35);
}
.contained-2sz3n.google-1KR11:hover:not(.disabled-33iqX),
.pill-TvEcG.google-1KR11:hover:not(.disabled-33iqX),
.contained-2sz3n.google-1KR11:focus:not(.disabled-33iqX),
.pill-TvEcG.google-1KR11:focus:not(.disabled-33iqX) {
  background-color: #2a75f3;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.google-1KR11:active:not(.disabled-33iqX),
.pill-TvEcG.google-1KR11:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #1b6cf2;
}
.contained-2sz3n.black-x815E,
.pill-TvEcG.black-x815E {
  background-color: #000000;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
  box-shadow: 0 4px 10px rgba(66, 103, 178, 0.35);
}
.contained-2sz3n.black-x815E:hover:not(.disabled-33iqX),
.pill-TvEcG.black-x815E:hover:not(.disabled-33iqX),
.contained-2sz3n.black-x815E:focus:not(.disabled-33iqX),
.pill-TvEcG.black-x815E:focus:not(.disabled-33iqX) {
  background-color: #000000;
  border-color: rgba(37, 93, 173, 0.25);
  color: #fff;
}
.contained-2sz3n.black-x815E:active:not(.disabled-33iqX),
.pill-TvEcG.black-x815E:active:not(.disabled-33iqX) {
  transition: none;
  box-shadow: none;
  background-color: #000000;
}
.link-2IWzW {
  color: #2ba7ce;
  /*
    line-height: 1 causes link buttons to cut off descender characters on Safari,
    TODO: use size of link button to calculate line-height when we are no longer using .less styles
    https://github.com/Outschool/Outschool/pull/3923#pullrequestreview-310574652
  */
  line-height: 1.3125em;
}
.link-2IWzW.inverted-1KhI2 {
  color: #ffffff;
  text-decoration: #ffffff;
  text-decoration-line: underline;
}
.link-2IWzW.inverted-1KhI2:active:not(.disabled-33iqX) {
  text-decoration-line: none;
}
.link-2IWzW:hover:not(.disabled-33iqX),
.link-2IWzW:focus:not(.disabled-33iqX) {
  color: #2285a4;
}
.link-2IWzW:active:not(.disabled-33iqX) {
  color: #1e748f;
}
.link-2IWzW.danger-W4Ynu {
  color: #f15d5d;
}
.link-2IWzW.danger-W4Ynu:hover:not(.disabled-33iqX),
.link-2IWzW.danger-W4Ynu:focus:not(.disabled-33iqX) {
  color: #ed2e2e;
}
.link-2IWzW.danger-W4Ynu:active:not(.disabled-33iqX) {
  color: #eb1717;
}
.link-2IWzW.disabled-33iqX {
  color: #b6bcc4;
  cursor: default;
}
.link-2IWzW.disabled-33iqX.primary-1ZwJX {
  color: #2e3238;
}
.icon-2tH_A {
  width: 46px;
  height: 46px;
  color: #6a7482;
}
.icon-2tH_A.blue-GeXHV {
  color: #2ba7ce;
}
.icon-2tH_A:hover,
.icon-2tH_A:active {
  color: #2ba7ce;
}
.icon-2tH_A.inverted-1KhI2 {
  color: #ffffff;
}
.icon-2tH_A.inverted-1KhI2:hover,
.icon-2tH_A.inverted-1KhI2:active {
  color: #2ba7ce;
}
.pill-TvEcG.medium-farUJ {
  height: 3.65rem;
  padding: 0.3rem 1.825rem;
  border-radius: 1.825rem;
}
.segment-3FGvE {
  display: flex;
}
.segment-3FGvE .button-3Fieu {
  margin-left: 0;
  margin-right: 0;
  border-left-width: 0;
  border-radius: 0;
}
.segment-3FGvE .button-3Fieu:first-child {
  border-radius: 5px 0 0 5px;
  border-left-width: 1px;
  border-right-width: 0px;
}
.segment-3FGvE .button-3Fieu:nth-child(2) {
  border-left-width: 1px;
  border-right-width: 1px;
}
.segment-3FGvE .button-3Fieu:last-child {
  border-radius: 0 5px 5px 0;
  border-left-width: 0;
}


/*# sourceMappingURL=client.2dda1c42a640a5e9f7e7.css.map*/