.link {
  cursor: pointer; }
  .link--as-text {
    color: #354147; }
  .link--underline {
    text-decoration: underline; }
.flex-group--row {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.flex-group--padded {
  padding: 13px; }
.svg-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  fill: currentColor; }
  .svg-icon * {
    fill: inherit; }
  .svg-icon--clickable {
    cursor: pointer; }
  .svg-icon--is-error {
    fill: #e52f00; }
  .svg-icon--is-success {
    fill: #13d0ab; }
  .svg-icon--is-warning {
    fill: #ffc43e; }
  .svg-icon--branded {
    fill: #ff4a00; }
  .svg-icon--does-not-exist {
    fill: none;
    stroke: #f00;
    stroke-width: 1px; }
  .svg-icon--spin {
    animation: spin 1.5s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(-359deg); } }
  .svg-icon > svg {
    display: block;
    width: inherit;
    height: inherit; }
.generic-heading {
  font-size: inherit;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  color: inherit;
  margin: 0;
  padding: 0;
  letter-spacing: 0; }
  .generic-heading--bold {
    font-weight: 600; }
  .generic-heading--uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em; }
  .generic-heading--12 {
    font-size: 1.2rem; }
  .generic-heading--15 {
    font-size: 1.5rem; }
  .generic-heading--16 {
    font-size: 1.6rem; }
  .generic-heading--20 {
    font-size: 2rem; }
  .generic-heading--25 {
    font-size: 2.5rem; }
  .generic-heading--30 {
    font-size: 3rem; }
  .generic-heading--1-and-half-em-top {
    margin-top: 1.5em; }
  .generic-heading--1-em-bottom {
    margin-bottom: 1em; }
  .generic-heading--1-em-right {
    margin-right: 1em; }
  .generic-heading--half-em-bottom {
    margin-bottom: 0.5em; }
  .generic-heading--inline {
    display: inline-block; }
  .generic-heading--flex {
    display: flex;
    align-items: center; }
  .generic-heading--centered {
    text-align: center; }
  .generic-heading--centered {
    text-align: center; }
  .generic-heading--deepspace {
    color: #354147; }
  .generic-heading__icon--before {
    margin-right: 0.5em; }
  .generic-heading__icon--after {
    margin-left: 0.5em; }
.page-section {
  margin: 0 auto;
  max-width: 1120px; }
  .page-section--narrow {
    max-width: 1000px; }
  .page-section--padded {
    padding: 20px; }
  .page-section--padded-horz {
    padding-left: 20px;
    padding-right: 20px; }
  .page-section--padded-vert {
    padding-top: 20px;
    padding-bottom: 20px; }
  .page-section--wide {
    max-width: none; }
.tag-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9em;
  height: 2em;
  line-height: 2em;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  background: #969ea2;
  text-align: center;
  border-radius: 3px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  overflow: hidden;
  vertical-align: middle; }
  .tag-v2--secondary {
    background: #fff;
    color: #5f6c72; }
  .tag-v2--pill {
    border-radius: 50px;
    padding-left: 0.6em;
    padding-right: 0.6em; }
  .tag-v2--small {
    font-size: .9rem;
    line-height: 2.2em; }
  .tag-v2--beta {
    background-color: #67d395; }
  .tag-v2--premium {
    background-color: #f2b742; }
  .tag-v2--upcoming {
    background-color: #fd8f66; }
  .tag-v2--failure {
    background-color: #ff4a00; }
  .tag-v2--success {
    background-color: #62d493; }
  .tag-v2--branded {
    background: linear-gradient(#ff4a00, #eba344); }
  .tag-v2--deprecated {
    background-color: #929fa5; }
  .tag-v2--promo {
    background-color: #1098bf; }
  .tag-v2--warning {
    background-color: #fd7622; }
  .tag-v2--chameleon {
    border-color: currentColor;
    color: inherit;
    background: none; }
  .tag-v2__icon--before {
    margin-right: 5px; }
  .tag-v2__icon--after {
    margin-left: 5px; }
.truncated-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .truncated-text--block {
    display: block; }
.video-player {
  position: relative;
  padding-bottom: 56.25%; }
  .video-player__overlay {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 0;
    background-color: #354147;
    z-index: 1;
    cursor: pointer;
    transition: opacity 140ms cubic-bezier(0.65, 0.05, 0.36, 1); }
    .video-player__overlay:hover {
      opacity: 0.7; }
    .video-player__overlay--transparent {
      background-color: transparent; }
  .video-player__overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .video-player__overlay-image {
    position: absolute;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
  .video-player__play-arrow {
    fill: #354147;
    margin-bottom: 12px;
    width: 28px;
    height: 28px; }
    @media screen and (min-width: 800px) {
      .video-player__play-arrow {
        margin-bottom: 24px;
        width: 40px;
        height: 40px; } }
  .video-player__title {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px; }
    @media screen and (min-width: 800px) {
      .video-player__title {
        font-size: 20px;
        font-weight: 600;
        line-height: 28px; } }
  .video-player__url {
    color: #969ea2;
    font-size: 16px;
    line-height: 22px;
    display: none; }
    @media screen and (min-width: 800px) {
      .video-player__url {
        display: block; } }
  .video-player__iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #354147; }
.text--light {
  color: #969EA2; }

.text--normal {
  font-weight: normal; }

.text--dark {
  color: #354147; }

.text--strong {
  font-weight: 600; }

.text--emphasis {
  font-style: italic; }

.text--capitalize {
  text-transform: capitalize; }

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

.text--uppercase {
  text-transform: uppercase; }

.text--small {
  font-size: 14px; }

.text--16 {
  font-size: 1.6rem; }

.text--lh-26 {
  line-height: 2.6rem; }

.text--block {
  display: block; }

.text--code {
  color: #5F6C72;
  background-color: #f1f4f5;
  padding: 2px;
  white-space: pre;
  font-family: monospace;
  border: 1px solid #DADFE2;
  border-radius: 2px; }

.text--quote {
  border-left: 3px solid #F1F4F5;
  color: #969EA2;
  margin-left: 15px;
  margin-bottom: 15px;
  padding-left: calc(15px * 0.5); }
.icon-button__before, .icon-button__after {
  padding: 0 calc(15px * 0.5); }
.button {
  background-color: #499DF3;
  border-color: transparent;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  cursor: pointer;
  position: relative;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  margin-bottom: calc(15px / 2);
  padding: 0 10px;
  line-height: 16px; }
  .button:hover {
    background-color: color(#499DF3 shade(5%)); }
  .button[disabled] {
    opacity: 0.5;
    cursor: not-allowed; }
  .button--secondary {
    background-color: #F1F4F5;
    color: #555;
    border-color: #DADFE2; }
    .button--secondary:hover {
      background-color: color(#F1F4F5 shade(5%)); }
  .button--clear {
    background-color: transparent;
    border-color: transparent;
    margin-bottom: 0;
    min-width: 45px; }
    .button--clear:hover {
      background-color: transparent; }
  .button--small {
    height: 30px; }
  .button--important {
    background-color: #ff4a00;
    color: #fff;
    border-color: transparent; }
    .button--important:hover {
      background-color: color(#ff4a00 shade(5%)); }
  .button--bold {
    font-weight: 600; }
  .button--stretch {
    width: 100%; }
  .button--block {
    display: flex; }
.image--round {
  border-radius: 50%; }

.image--fill {
  width: 100%; }
.services-search-dropdown {
  position: relative; }
  .services-search-dropdown__list {
    background-color: #fff;
    border: 1px solid #F1F4F5;
    border-radius: 4px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 5;
    max-height: 300px;
    width: 100%;
    overflow-y: auto; }
  .services-search-dropdown__results-list {
    margin: 0; }
    .services-search-dropdown__results-list > * {
      border-bottom: 1px solid #F1F4F5; }
      .services-search-dropdown__results-list > *:last-child {
        border-bottom: none; }
  .services-search-dropdown__no-results {
    padding: calc(15px * 0.5); }
.service-dropdown-item {
  display: flex;
  align-items: center;
  padding: 6px;
  cursor: pointer; }
  .service-dropdown-item__logo {
    margin-right: calc(15px * 0.5);
    width: 28px;
    height: 28px; }
  .service-dropdown-item--selected {
    background-color: #F1F4F5; }
.service-logo {
  border-radius: 3px;
  display: inline-block; }
.text-input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #DADFE2;
  color: #5F6C72;
  margin: 0 0 15px;
  padding: 12px;
  outline: none; }
  .text-input--disabled {
    background-color: #F1F4F5; }
  .text-input--highlight:focus {
    background-color: #fff6e1;
    border: 1px solid #ffd77b; }
  .text-input::-webkit-input-placeholder {
    color: #969EA2; }
  .text-input::-ms-input-placeholder {
    color: #969EA2; }
  .text-input::placeholder {
    color: #969EA2; }
.search-box {
  position: relative;
  border: 1px solid #DADFE2;
  border-radius: 4px;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; }
  .search-box__input {
    height: 45px;
    margin: 0;
    border: none;
    flex: 1;
    padding: 6px 30px 6px 40px; }
    .search-box__input--slim {
      height: 40px; }
      @media screen and (min-width: 800px) {
        .search-box__input--slim {
          height: auto; } }
  .search-box__icon {
    color: #969EA2;
    width: 20px;
    height: 20px; }
  .search-box__after-icon, .search-box__before-icon {
    align-items: center;
    display: flex;
    height: 45px;
    justify-content: center;
    width: 45px;
    padding: 0 10px;
    margin: 0;
    position: absolute; }
    .search-box__after-icon--slim, .search-box__before-icon--slim {
      height: 18px;
      width: 18px;
      /* padding: 20px 16px; */ }
      @media screen and (min-width: 800px) {
        .search-box__after-icon--slim, .search-box__before-icon--slim {
          /* padding: 14px 18px; */ } }
      .search-box__after-icon--slim > .svg-icon, .search-box__before-icon--slim > .svg-icon {
        height: 18px;
        width: 18px; }
  .search-box__after-icon {
    right: 0;
    position: absolute;
    top: 0; }
    .search-box__after-icon--slim {
      top: 50%;
      transform: translateY(-50%);
      right: 10px; }
  .search-box__before-icon {
    left: 0;
    position: absolute;
    top: 0; }
    .search-box__before-icon--slim {
      top: 50%;
      transform: translateY(-50%);
      left: 10px; }
  .search-box .search-box__clear-icon {
    color: #969EA2;
    width: 14px;
    height: 14px;
    z-index: 1; }
.services-search {
  flex: 1 196px; }
  @media (min-width: 780px) {
    .services-search--hidden {
      display: none;
      visibility: hidden; } }
  @media (min-width: 780px) {
    .services-search--overlay {
      position: absolute !important;
      right: -283px;
      z-index: 10;
      top: 6px;
      min-width: 325px; } }
.page-layout {
  padding-bottom: 100px;
  border-bottom: 1px solid #f1f4f5; }
  .page-layout--bg-storm {
    background-color: #F1F4F5; }
  .page-layout--partner-program-landing {
    padding-bottom: 0; }
.edit-page-banner {
  position: fixed;
  z-index: 999;
  bottom: 25px;
  right: 25px;
  background-color: white;
  border: 1px solid #DADFE2;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  padding: 15px; }
  .edit-page-banner__link {
    padding: 5px;
    display: block;
    text-decoration: underline; }
    .edit-page-banner__link:hover {
      color: #969EA2; }
@media screen and (max-width: 425px) {
  .service-page-title-heading {
    margin-left: 15px; } }

.service-page-title-heading__back-link {
  color: #499DF3;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 12px; }
  .service-page-title-heading__back-link--padded-bottom {
    margin-bottom: 15px; }

.service-page-title-heading__back-arrow {
  transform: rotate(180deg);
  display: inline-block;
  width: 20px; }

.service-page-title-heading__back-link-anchor {
  padding-left: 5px;
  text-decoration: underline; }

.service-page-title-heading__title {
  margin: 22px 0 10px; }
.grid {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  grid-gap: 2rem; }
  .grid--slim {
    grid-gap: 1rem; }
  .grid__column {
    grid-column: span 12; }
    @media screen and (min-width: 1000px) {
      .grid__column--span-1 {
        grid-column: span 1; }
      .grid__column--span-2 {
        grid-column: span 2; }
      .grid__column--span-3 {
        grid-column: span 3; }
      .grid__column--span-4 {
        grid-column: span 4; }
      .grid__column--span-5 {
        grid-column: span 5; }
      .grid__column--span-6 {
        grid-column: span 6; }
      .grid__column--span-7 {
        grid-column: span 7; }
      .grid__column--span-8 {
        grid-column: span 8; }
      .grid__column--span-9 {
        grid-column: span 9; }
      .grid__column--span-10 {
        grid-column: span 10; }
      .grid__column--span-11 {
        grid-column: span 11; }
      .grid__column--span-12 {
        grid-column: span 12; } }
.service-page-layout__sidebar-column {
  display: flex;
  flex-direction: column; }

@media screen and (max-width: 420px) {
  .service-page-layout__card-section {
    padding-left: 5px;
    padding-right: 5px; } }
.badge {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 17px;
  border-radius: 4px;
  color: #fff;
  padding: 1px 6px; }
  .badge--premium {
    background-color: #f2b742; }
.service-shield {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  background-color: #fff; }
  @media screen and (min-width: 750px) {
    .service-shield {
      height: 75px;
      width: 75px;
      border: 3px solid #F1F4F5;
      border-radius: 15px; } }
  .service-shield__logo {
    height: 36px;
    width: 36px; }
    @media screen and (min-width: 750px) {
      .service-shield__logo {
        height: 48px;
        width: 48px; }
        .service-shield__logo--small {
          height: 36px;
          width: 36px; } }
  .service-shield__badge {
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center; }
  .service-shield--small {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    background-color: #fff; }
.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 19px;
  margin: 0;
  list-style: none; }
  .breadcrumbs__item {
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    color: #fff; }
    @media screen and (min-width: 480px) {
      .breadcrumbs__item {
        margin-bottom: 0; } }
  .breadcrumbs__icon {
    margin-left: 0.5rem;
    position: relative;
    top: 3px;
    width: 14px;
    height: 14px; }
  .breadcrumbs__link {
    color: #fff;
    text-decoration: underline; }
    .breadcrumbs__link--active {
      text-decoration: none; }
.navbar {
  background-color: #fff;
  font-size: 16px;
  position: relative; }
  .navbar--bordered {
    border-bottom: 1px solid #f1f4f5; }
  .navbar::after {
    content: '';
    width: 1em;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 75%); }
  .navbar__nav-items {
    display: flex;
    position: relative;
    overflow-x: auto; }
  .navbar__link {
    color: #5F6C72;
    flex-shrink: 0;
    padding: 11px 0 5px 0;
    line-height: 1.4;
    margin: 0 0.7em;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.1s ease-in-out;
    border-bottom: 3px solid transparent; }
    .navbar__link:first-of-type {
      margin-left: 0;
      padding-left: 0; }
    .navbar__link:hover {
      color: #354147; }
    .navbar__link--active {
      color: #354147;
      font-weight: 600;
      border-bottom: 3px solid #499DF3; }
  .navbar__highlight {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #499DF3;
    transition: all 0.3s ease-in-out;
    transform-origin: 0 100%;
    will-change: transform; }
.service-page-header__content-wrapper {
  position: relative; }

.service-page-header__content {
  position: relative;
  z-index: 2;
  padding: 20px; }
  @media screen and (min-width: 750px) {
    .service-page-header__content {
      padding: 20px 20px 0; } }

.service-page-header__description {
  color: #969EA2;
  line-height: 20px; }

.service-page-header__fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden; }

.service-page-header__fill-primary {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; }

.service-page-header__fill-slice {
  background-color: rgba(255, 255, 255, 0.1);
  bottom: 0;
  left: 90%;
  position: absolute;
  right: -999px;
  top: 0;
  transform: skew(-50deg);
  z-index: 2; }
  @media screen and (min-width: 750px) {
    .service-page-header__fill-slice {
      left: 60%; } }

.service-page-header__title {
  color: #fff;
  font-size: 28px;
  line-height: 57px;
  font-weight: normal;
  padding: 0; }
  @media screen and (min-width: 750px) {
    .service-page-header__title {
      margin-left: 100px; }
      .service-page-header__title--no-navbar {
        margin-left: 0; } }

.service-page-header__logo-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .service-page-header__logo-wrapper--no-navbar {
    padding-bottom: 10px; }

.service-page-header__logo {
  margin-right: 20px; }
  @media screen and (min-width: 750px) {
    .service-page-header__logo {
      position: absolute;
      bottom: -25px;
      z-index: 1; }
      .service-page-header__logo--no-navbar {
        position: static; } }

.service-page-header__breadcrumb {
  display: none;
  visibility: hidden; }
  @media screen and (min-width: 750px) {
    .service-page-header__breadcrumb {
      display: block;
      visibility: visible;
      margin-bottom: 25px; } }

.service-page-header__nav-wrapper {
  background: #fff;
  border-bottom: 1px solid #DADFE2; }

@media screen and (min-width: 750px) {
  .service-page-header__subnav {
    padding-left: 100px; } }

.service-page-header__subnav-link {
  padding: 11px 0 5px; }
.card-module {
  margin-bottom: 2rem;
  background-color: #fff;
  border: 1px solid #DADFE2;
  border-radius: 4px; }
  .card-module--padded {
    padding: 15px 20px; }
    @media screen and (max-width: 425px) {
      .card-module--padded {
        padding: 15px; } }
.card-module-with-title__heading {
  display: flex;
  align-items: center;
  justify-content: left;
  padding-bottom: 20px; }

.card-module-with-title__title {
  padding: 0;
  line-height: 2.2rem; }
  .card-module-with-title__title--center {
    text-align: center; }

.card-module-with-title__tag {
  margin-left: 8px; }

.card-module-with-title__link {
  color: inherit; }

.card-module-with-title__sideLink {
  text-align: right;
  flex: 1; }

.card-module--compact-title .card-module-with-title__heading {
  padding-bottom: 10px; }
.media-object {
  display: flex;
  align-items: flex-start; }
  .media-object__figure {
    margin-right: 1rem; }
  .media-object__body {
    flex: 1; }
.html-content img {
  max-width: 100%; }

.html-content ul {
  list-style-type: disc;
  padding-left: calc(15px * 1.25);
  margin-bottom: 0; }
  .html-content ul li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: calc(15px / 2);
    color: #5F6C72; }
.pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #354147;
  opacity: 1;
  transition: opacity 0.125s; }
  .pagination__icon-before, .pagination__icon-after {
    padding: 0 calc(15px * 0.75);
    display: flex;
    justify-content: center;
    align-items: center; }
  .pagination__loading-block {
    width: 100px; }
  .pagination__info-text {
    min-width: 100px; }
  .pagination__icon {
    color: #969EA2; }
    .pagination__icon--active {
      color: #354147; }
  .pagination--faded {
    opacity: 0.5; }
.overflow-content__wrapper {
  position: relative;
  overflow: hidden; }
  .overflow-content__wrapper--expanded {
    overflow: initial; }

.overflow-content__content--truncate {
  overflow-y: hidden;
  height: 300px;
  margin-bottom: 1.5rem; }

.overflow-content__toggle {
  display: none;
  visibility: hidden;
  text-align: center; }
  .overflow-content__toggle--visible {
    display: block;
    visibility: visible; }

.overflow-content__overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: linear-gradient(rgba(255, 255, 255, 0), white);
  display: block;
  visibility: visible; }
  .overflow-content__overlay--expanded {
    display: none;
    visibility: hidden; }
.service-description__link-button {
  margin-top: 15px; }
.google-sso-button__button {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #DADFE2;
  border-radius: 4px;
  padding: 2px 10px;
  background-color: #fff;
  color: #4D4D4D;
  height: 45px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); }
  .google-sso-button__button--large {
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600; }
  .google-sso-button__button:hover, .google-sso-button__button:focus {
    background: #f7f7f7;
    color: #4D4D4D;
    text-decoration: none; }
  .google-sso-button__button--blue {
    background-color: #4285F4;
    color: #fff;
    border: none; }
    .google-sso-button__button--blue::before {
      content: '';
      position: absolute;
      background-color: #fff;
      border-radius: 1px;
      top: 2px;
      left: 2px;
      bottom: 2px;
      width: calc(45px - 4px); }
    .google-sso-button__button--blue:hover, .google-sso-button__button--blue:focus {
      background-color: #3367D6;
      color: #fff; }

.google-sso-button__button-icon {
  width: 24px;
  height: 20px;
  z-index: 1; }

.google-sso-button__button-label {
  flex: 1;
  text-align: center; }
.google-one-tap-sso-frame--loading {
  height: 173px;
  background-image: url("/static/images/login/google-skeleton.png");
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%; }

.google-one-tap-sso-frame--loaded {
  width: calc(100% + 20px);
  margin: -22px 0 0 -1px; }
  @media screen and (max-width: 382px) {
    .google-one-tap-sso-frame--loaded {
      width: calc(100% + 40px);
      margin: -22px 0 0 -11px; } }
.captcha {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 1px rgba(95, 108, 114, 0.08), 0 2px 18px rgba(95, 108, 114, 0.18);
  padding: 1.5em; }
  .captcha__captcha-description {
    font-size: 1.0em;
    margin-bottom: 1.5em;
    text-align: center; }
  .captcha__recaptcha {
    margin-top: 30px; }
    .captcha__recaptcha > div {
      margin: 0 auto;
      display: block; }
.separator {
  display: flex;
  position: relative;
  margin: 2rem 0;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  flex: 1; }
  .separator::before, .separator::after {
    flex: 1;
    content: '';
    border-bottom: 1px solid #5F6C72; }
  .separator__content {
    margin: 0 3rem; }
  .separator--light {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #969EA2;
    font-size: 1.3rem; }
    .separator--light::before, .separator--light::after {
      border-color: #DADFE2; }
.signup-form__error {
  color: #FF4A00;
  margin-bottom: 15px; }

.signup-form__separator {
  margin-top: 10px; }
.circular-avatar {
  border-radius: 50%;
  overflow: hidden; }
.user-testimonial {
  padding: 0 15px 2rem; }
.video-player-module__player {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #DADFE2;
  border-radius: 4px;
  overflow: hidden; }

.video-player-module__header-text {
  margin-bottom: 20px; }

.video-player-module__footer-text {
  text-align: center;
  margin-bottom: 15px; }

.video-player-module__buttons {
  display: flex;
  margin-bottom: 15px; }

.video-player-module__logo-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start; }

.video-player-module__logo-list-item {
  margin: 10px 10px 0; }

.video-player-module__logo {
  opacity: 0.3;
  width: auto;
  height: 27px; }
  @media screen and (min-width: 750px) {
    .video-player-module__logo {
      height: 33px; } }
.sticky-node {
  order: -999; }
  @media screen and (min-width: 1000px) {
    .sticky-node {
      order: initial;
      position: -webkit-sticky;
      position: sticky; } }

/*# sourceMappingURL=main.js-f15d0c31a7cec6c9a74f.css.map*/