@charset "UTF-8";
* {
  outline: none;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat-Optional", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.02em;
  color: #333333;
  background-color: #fff;
  min-height: 101vh;
}

button,
input,
textarea,
select {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: 0.02em;
}

button {
  background-color: transparent;
  border: none;
}

pre {
  padding: 8px;
  background-color: #f6f6f7;
  overflow-x: auto;
}

hr {
  border: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 40px 0;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  line-height: 1.2;
  margin: 1em 0;
  color: #0b1324;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a {
  text-decoration: none;
  color: inherit;
}
h1 a:hover, h1 a:active,
h2 a:hover,
h2 a:active,
h3 a:hover,
h3 a:active,
h4 a:hover,
h4 a:active,
h5 a:hover,
h5 a:active,
.h1 a:hover,
.h1 a:active,
.h2 a:hover,
.h2 a:active,
.h3 a:hover,
.h3 a:active,
.h4 a:hover,
.h4 a:active,
.h5 a:hover,
.h5 a:active {
  color: #86a0d1;
}

h1,
.h1 {
  font-size: 56px;
  font-weight: 600;
}
@media (max-width: 799px) {
  h1,
.h1 {
    font-size: 40px;
  }
}
@media (max-width: 539px) {
  h1,
.h1 {
    font-size: 32px;
  }
}

h2,
.h2 {
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 799px) {
  h2,
.h2 {
    font-size: 26px;
  }
}
@media (max-width: 539px) {
  h2,
.h2 {
    font-size: 22px;
  }
}

h3,
.h3 {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 799px) {
  h3,
.h3 {
    font-size: 20px;
  }
}
@media (max-width: 539px) {
  h3,
.h3 {
    font-size: 18px;
  }
}

h4,
.h4 {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 799px) {
  h4,
.h4 {
    font-size: 16px;
  }
}
@media (max-width: 539px) {
  h4,
.h4 {
    font-size: 16px;
  }
}

h5,
.h5 {
  font-weight: 500;
  font-size: 15px;
}

.display1 {
  font-size: 56px;
}

.display2 {
  font-size: 40px;
}

p {
  margin: 0 0 1em 0;
}

a {
  color: inherit;
  color: #3660b3;
}
a:hover, a:active {
  color: #86a0d1;
}

ul {
  padding-left: 24px;
}

dt {
  font-weight: 600;
}

dd {
  margin-left: 16px;
  margin-bottom: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: solid 1px rgba(22, 33, 57, 0.3);
  margin-bottom: 16px;
}
.table tr:nth-child(even) {
  background-color: #f6f6f7;
}
.table td {
  padding: 8px;
  height: 48px;
}
.table th {
  padding: 8px;
  border-bottom: solid 1px rgba(22, 33, 57, 0.3);
  text-align: left;
}
.table__scrollWrapper {
  max-width: 100%;
  overflow-x: auto;
}
.table--hover tr {
  cursor: pointer;
}
.table--hover tr:hover {
  background-color: #edeeef;
}

@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.ct {
  position: relative;
  z-index: 1;
}
.ct--minHeight {
  min-height: 352px !important;
}
.ct--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  min-height: 192px;
  transition: all 0.3s;
}
@media (max-width: 799px) {
  .ct--hero {
    min-height: 288px;
  }
}
@media (max-width: 539px) {
  .ct--hero {
    min-height: 224px;
  }
}
.ct--hero h1 {
  margin: 0;
  color: #fff;
  transition: all 0.3s;
}
.ct--hero h2 {
  color: #fff;
  margin: 16px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
}
@media (max-width: 539px) {
  .ct--hero h2 {
    font-size: 16px;
  }
}
.ct--tools {
  padding: 8px 0;
}
.ct--content {
  padding: 48px 0;
}
.ct--breadcrumb {
  padding: 8px 0;
}
.ct--section {
  overflow: auto;
}
.ct--backgroundpos--left-top {
  background-position: left top;
}
.ct--backgroundpos--left-center {
  background-position: left center;
}
.ct--backgroundpos--left-bottom {
  background-position: left bottom;
}
.ct--backgroundpos--center-top {
  background-position: center top;
}
.ct--backgroundpos--center-center {
  background-position: center center;
}
.ct--backgroundpos--center-bottom {
  background-position: center bottom;
}
.ct--backgroundpos--right-top {
  background-position: right top;
}
.ct--backgroundpos--right-center {
  background-position: right center;
}
.ct--backgroundpos--right-bottom {
  background-position: right bottom;
}
.ct a {
  text-decoration: none;
}

.bg--content {
  background-color: #fff;
  color: #333333;
}
.bg--light {
  background-color: #edeeef;
  color: #333333;
}
.bg--lighter {
  background-color: #f6f6f7;
  color: #333333;
}
.bg--dark {
  background-color: #3660b3;
  color: #fff;
}
.bg--darker {
  background-color: #2b4d8f;
  color: #fff;
}
.bg--cloud {
  color: #fff;
}
.bg--cloud .row {
  position: relative;
  z-index: 1;
}
.bg--contentCloudsLighter {
  background-color: #fff;
  background-image: url(/images/bg/bg-content-clouds-lighter.svg);
  background-repeat: repeat-y;
  background-position-x: center;
  background-size: 1500px 2000px;
  color: #333333;
}
@media (max-width: 1023px) {
  .bg--contentCloudsLighter {
    background-size: 1200px 1600px;
  }
}
@media (max-width: 799px) {
  .bg--contentCloudsLighter {
    background-size: 900px 1500px;
  }
}
@media (max-width: 539px) {
  .bg--contentCloudsLighter {
    background-image: none;
  }
}
.bg--contentCloudsDark {
  background-color: #afbfe1;
  background-image: url(/images/bg/bg-content-clouds-white.svg);
  background-repeat: repeat-y;
  background-position-x: center;
  background-size: 1500px 2000px;
  color: #333333;
}
@media (max-width: 1023px) {
  .bg--contentCloudsDark {
    background-size: 1200px 1600px;
  }
}
@media (max-width: 799px) {
  .bg--contentCloudsDark {
    background-size: 900px 1500px;
  }
}
@media (max-width: 539px) {
  .bg--contentCloudsDark {
    background-image: none;
  }
}

.cloudBg {
  background-color: #3660b3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.cloudBg canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.row {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.row--md {
  max-width: 960px;
}
.row--sm {
  max-width: 768px;
}
.row--title > *:first-child {
  margin-top: 0;
}
.row--title > *:first-child {
  margin-bottom: 0;
}
.bg--dark .row--title .h1,
.bg--dark .row--title .h2,
.bg--dark .row--title .h3,
.bg--dark .row--title .h4,
.bg--dark .row--title .h5 {
  color: #fff;
}
.row--textCenter {
  text-align: center;
}
@media (min-width: 540px) {
  .row--textRight {
    text-align: right;
  }
}
@media (max-width: 539px) {
  .row {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.font--sm {
  font-size: 14px;
}
.font--lg {
  font-size: 17px;
}

.m0 {
  margin: 0;
}

.mra {
  margin-right: auto !important;
}

.mla {
  margin-right: auto !important;
}

.mv--sm {
  margin-top: 24px;
  margin-bottom: 24px;
}
.mv--md {
  margin-top: 48px;
  margin-bottom: 48px;
}
.mv--lg {
  margin-top: 96px;
  margin-bottom: 96px;
}
.mv--xl {
  margin-top: 192px;
  margin-bottom: 192px;
}

.mt--sm {
  margin-top: 24px;
}
.mt--md {
  margin-top: 48px;
}
@media (max-width: 539px) {
  .mt--md {
    margin-top: 40px;
  }
}
.mt--lg {
  margin-top: 96px;
}
@media (max-width: 539px) {
  .mt--lg {
    margin-top: 64px;
  }
}
.mt--xl {
  margin-top: 192px;
}
@media (max-width: 539px) {
  .mt--xl {
    margin-top: 128px;
  }
}

.mb--sm {
  margin-bottom: 24px;
}
.mb--md {
  margin-bottom: 48px;
}
@media (max-width: 539px) {
  .mb--md {
    margin-bottom: 40px;
  }
}
.mb--lg {
  margin-bottom: 96px;
}
@media (max-width: 539px) {
  .mb--lg {
    margin-bottom: 64px;
  }
}
.mb--xl {
  margin-bottom: 192px;
}
@media (max-width: 539px) {
  .mb--xl {
    margin-bottom: 128px;
  }
}

.p1 {
  padding: 8px;
}

.p2 {
  padding: 16px;
}

.text--small {
  font-size: 14px;
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}
.text--muted {
  opacity: 0.6;
}
.text--error {
  color: #cc0000;
}
.text--warning {
  color: #ff8800;
}
.text--success {
  color: #0eb852;
}

.elevate--1 {
  box-shadow: 0 3px 16px rgba(22, 33, 57, 0.06), 0 3px 4px rgba(22, 33, 57, 0.2);
}
.elevate--2 {
  box-shadow: 0 3px 24px rgba(22, 33, 57, 0.08), 0 3px 4px rgba(22, 33, 57, 0.24);
}
.elevate--3 {
  box-shadow: 0 3px 32px rgba(22, 33, 57, 0.12), 0 3px 4px rgba(22, 33, 57, 0.26);
}
.elevate--4 {
  box-shadow: 0 3px 40px rgba(22, 33, 57, 0.18), 0 3px 4px rgba(22, 33, 57, 0.3);
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(5, 10, 18, 0.8);
  z-index: 101;
  animation: fadeIn ease-in 0.2s;
}
.backdrop--toolMenu {
  z-index: 8;
  display: none;
}
.backdrop--toolMenuOpen {
  display: block !important;
}

.cta {
  margin: 64px 0;
  text-align: center;
}

.hidden,
.hide {
  display: none !important;
}

@media (min-width: 800px) {
  .imgText {
    display: grid;
    grid-gap: 48px;
    grid-template-columns: 1fr 1fr;
  }
  .imgText--alignStart {
    align-items: start;
  }
  .imgText--alignCenter {
    align-items: center;
  }
  .imgText--alignStart {
    align-items: end;
  }
}
.imgText__imgCol img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 800px) {
  .imgText--reverse .imgText__imgCol {
    grid-row-start: 1;
    grid-column-start: 2;
  }
}
.imgText__txtCol {
  display: flex;
}
@media (min-width: 800px) {
  .imgText__txtCol--center {
    text-align: center;
  }
  .imgText__txtCol--right {
    text-align: right;
  }
  .imgText--reverse .imgText__txtCol {
    grid-row-start: 1;
    grid-column-start: 1;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.header__spacer {
  height: 80px;
}
@media (max-width: 539px) {
  .header__spacer {
    height: 56px;
  }
}
.header__row {
  display: flex;
  align-items: center;
  height: 80px;
  transition: height 0.25s;
  color: #0b1324;
  max-width: 100%;
}
@media (max-width: 539px) {
  .header__row {
    height: 56px;
  }
}
.scroll .header__row {
  height: 56px;
  transition: height 0.25s;
}

.mainNav {
  display: flex;
  max-height: 100%;
  overflow: hidden;
  margin: 0 16px;
  margin-right: auto;
}
.mainNav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 52px;
}
@media (max-width: 539px) {
  .mainNav__list {
    display: none;
  }
}
.mainNav__listItem {
  display: flex;
  align-items: center;
  height: 52px;
}
.mainNav__link {
  display: flex;
  align-items: center;
  padding: 10px;
  color: inherit;
  font-weight: 500;
  font-size: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.mainNav__btn {
  cursor: pointer;
}
.mainNav__btn:hover, .mainNav__btn:active {
  color: #86a0d1;
}
.mainNav__btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.25s;
}
.mainNav__btn--open svg {
  transition: transform 0.25s;
  transform: rotate(180deg);
}

.allTools {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  display: none;
  z-index: 9;
  transition: top 0.25s;
  border-top: solid 1px #edeeef;
  max-height: calc(100% - 80px);
  overflow-y: auto;
}
@media (max-width: 539px) {
  .allTools {
    max-height: calc(100% - 56px);
    top: 56px;
  }
}
.scroll .allTools {
  top: 56px;
  transition: top 0.25s;
}
.allTools--open {
  display: block;
}
.allTools__category {
  flex-grow: 1;
}
.allTools__body {
  position: relative;
  padding-bottom: 8px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.allTools__customWorkflows {
  text-align: center;
}
@media (min-width: 800px) {
  .allTools__customWorkflows {
    text-align: left;
    display: grid;
    column-gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
.allTools__customWorkflows a {
  display: block;
  color: #333333;
  text-decoration: none;
  padding: 5px 0;
}
.allTools__customWorkflows a:hover {
  color: #86a0d1;
}

@keyframes btnLoginFadeIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes btnTeamsFadeIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.userNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .userNav {
    width: 170px;
  }
}
.userNav__btnLogin.btn {
  padding: 0 8px;
  margin-right: 16px;
  animation: btnLoginFadeIn ease-in 0.15s;
}
@media (max-width: 1023px) {
  .userNav__btnLogin.btn {
    display: none !important;
  }
}
.userNav__btnTeams.btn {
  padding: 0 8px;
  margin-right: 16px;
  animation: btnTeamsFadeIn ease-in 0.15s;
}
@media (max-width: 1023px) {
  .userNav__btnTeams.btn {
    display: none !important;
  }
}
.userNav__btnAutomation.btn {
  padding: 0 8px;
  margin-right: 16px;
  animation: btnTeamsFadeIn ease-in 0.15s;
}
@media (max-width: 1023px) {
  .userNav__btnAutomation.btn {
    display: none !important;
  }
}
.userNav__Separator.btn, .userNav__Separator2.btn {
  padding: 0 8px;
  margin-right: 16px;
  animation: btnLoginFadeIn ease-in 0.15s;
}
@media (max-width: 1023px) {
  .userNav__Separator.btn, .userNav__Separator2.btn {
    display: none !important;
  }
}

.btnUserNav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #edeeef;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
@media (max-width: 539px) {
  .btnUserNav {
    width: 40px;
    height: 40px;
  }
}
.dropdown--open .btnUserNav {
  background-color: #3660b3;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.burger {
  min-width: 16px;
  height: 16px;
  position: relative;
  margin: 0;
  padding: 0;
  transform: rotate(0);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #333333;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.2s ease-in-out;
}
.dropdown--open .burger span {
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2), .burger span:nth-child(3) {
  top: 8px;
  left: 4px;
  width: 12px;
}
.burger span:nth-child(4) {
  top: 15px;
}
.dropdown--open .burger span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.dropdown--open .burger span:nth-child(2), .dropdown--open .burger span:nth-child(3) {
  left: 0;
  width: 100%;
}
.dropdown--open .burger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dropdown--open .burger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dropdown--open .burger span:nth-child(4) {
  top: 0px;
  width: 0%;
  left: 50%;
}

.dropdown__menu.dropdown__menu--userNav {
  border: none;
  padding: 0;
  overflow: hidden;
}
.dropdown__menu.dropdown__menu--userNav .loader {
  margin: 8px auto;
}
@media (min-width: 800px) {
  .dropdown__menu.dropdown__menu--userNav {
    min-width: 640px;
  }
}
@media (max-width: 799px) {
  .dropdown__menu.dropdown__menu--userNav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    border: none;
    border-radius: 0;
    overflow: auto;
  }
}
@media (max-width: 539px) {
  .dropdown__menu.dropdown__menu--userNav {
    top: 56px;
  }
}

.userMenu h4 {
  margin-top: 0;
  margin-bottom: 4px;
  font-weight: 600;
}
@media (min-width: 800px) {
  .userMenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.userMenu__planName {
  font-size: 12px;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 16px;
  display: inline-block;
}
.userMenu__planName h5 {
  display: inline;
  margin-left: 8px;
  color: #333333;
}
.userMenu .proPlan,
.userMenu .dayPassPlan {
  width: 80px;
  height: 30px;
  position: relative;
  background: #787878;
  display: inline;
  float: left;
}
.userMenu .proPlan h4,
.userMenu .dayPassPlan h4 {
  margin-left: 8px;
  margin-top: 6px;
  display: inline-block;
  color: #fff;
}
.userMenu .proPlan h5,
.userMenu .dayPassPlan h5 {
  margin-left: 16px;
  display: inline-block;
  color: rgba(51, 51, 51, 0.6);
}
.userMenu .dayPassPlan {
  background: #3660b3;
  width: 125px;
}
.userMenu .proPlan:before,
.userMenu .dayPassPlan:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 15px solid #f6f6f7;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.userMenu .planDetails {
  float: left;
  height: 30px;
  margin-left: 12px;
}
.userMenu .planDetails h5 {
  margin-top: 6px;
  margin-right: 8px;
  display: inline;
  color: rgba(51, 51, 51, 0.6);
}
.userMenu .planDetails h5.warning {
  color: #ff8800;
  font-weight: 400;
}
.userMenu .planDetails h5.alert {
  color: #c71217;
  font-weight: 400;
}
.userMenu .dataWarning {
  color: #ff8800;
}
.userMenu .dataAlert {
  color: #c71217;
}
.userMenu__sub {
  padding: 24px;
  background-color: #f6f6f7;
}
.userMenu__sub h5 {
  font-weight: 400;
}
.userMenu__sub .checkOut {
  text-align: center;
}
.userMenu__sub .checkOut h4 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.userMenu__sub .dayPass {
  left: 0;
  clear: left;
  margin-top: 40px;
  color: rgba(51, 51, 51, 0.6);
  display: flex;
}
.userMenu__sub .dayPass h3 {
  margin-top: 0.8px;
  margin-left: 8px;
  font-weight: 500;
  color: #0b1324;
}
.userMenu__sub dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 4px 0;
}
.userMenu__sub dt {
  padding: 0;
  margin: 0;
  font-weight: 400;
}
.userMenu__sub dt a {
  text-decoration: none;
  color: #0b1324;
}
.userMenu__sub dt a:hover {
  color: #86a0d1;
}
.userMenu__sub dd {
  padding: 2px 8px;
  margin: 0;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  color: #3660b3;
}
.userMenu__sub dd a {
  color: #3660b3;
  text-decoration: none;
}
.userMenu__nav {
  padding: 24px;
}
.userMenu__nav .checkOut {
  text-align: center;
}
.userMenu__nav .checkOut h4 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.userMenu__nav .checkOut h5 {
  font-weight: 400;
}
.userMenu__nav .checkOut .login {
  color: #3660b3;
  font-weight: 500;
  font-size: large;
  text-decoration: none;
  cursor: pointer;
}
.userMenu__nav .checkOut .login:hover {
  color: #86a0d1;
}
.userMenu__navList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.userMenu__navList li > * {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  color: #333333;
  cursor: pointer;
}
.userMenu__navList li > *:hover {
  color: #86a0d1;
}
.userMenu__navList li .logOut {
  color: #3660b3;
  font-weight: 600;
  font-size: large;
}
.userMenu__navList .icon {
  margin-right: 8px;
}

.footer {
  position: relative;
  border-top: solid 1px #edeeef;
}
@media (min-width: 800px) {
  .footer__main {
    display: flex;
    align-items: flex-start;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .footer__brand {
    flex-basis: 33%;
  }
}
@media (max-width: 799px) {
  .footer__brand {
    padding-bottom: 24px;
  }
}
@media (min-width: 540px) {
  .footer__brand {
    align-items: flex-start;
  }
}
@media (max-width: 539px) {
  .footer__brand {
    align-items: center;
  }
}
.footer__addons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: solid 1px #edeeef;
  padding: 0;
  min-height: 80px;
}
@media (max-width: 539px) {
  .footer__addons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__addons a {
    margin: 24px 0;
  }
}
.footer__addons a,
.footer__addons img {
  display: block;
}
.footer__legal {
  font-size: 12px;
  font-weight: fontWeightSemiBold;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 540px) {
  .footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media (max-width: 539px) {
  .footer__legal {
    text-align: center;
  }
}
.footer__navLinks {
  display: grid;
  grid-gap: 24px;
  flex-grow: 1;
  padding: 4px 0 16px 0;
}
@media (max-width: 539px) {
  .footer__navLinks {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (min-width: 540px) {
  .footer__navLinks {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer__navLinks {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.ct--legal {
  border-top: solid 2px #edeeef;
}

.socialMediaLinks {
  list-style: none;
  display: inline-grid;
  grid-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin: 0;
  padding: 32px 0;
}
@media (max-width: 539px) {
  .socialMediaLinks {
    margin-top: 32px;
    grid-gap: 24px;
  }
}
.socialMediaLinks a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  color: rgba(51, 51, 51, 0.6);
}
.socialMediaLinks a:hover, .socialMediaLinks a:active {
  opacity: 0.8;
}

.legalLinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
@media (max-width: 539px) {
  .legalLinks {
    flex-direction: column;
    margin-bottom: 16px;
    align-items: center;
  }
}
.legalLinks__item {
  height: auto;
}
.legalLinks__item a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 539px) {
  .legalLinks__item {
    padding: 8px 0;
  }
}
@media (min-width: 540px) {
  .legalLinks__item:not(:first-child) ::before {
    content: "|";
    display: inline-block;
    padding: 0 16px;
  }
}

@keyframes cookieInfoFadeIn {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.cookieInfo {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  padding: 12px 0;
  animation: cookieInfoFadeIn ease-in 0.25s;
}
.cookieInfo a {
  color: #ebeff7;
}
.cookieInfo a:hover, .cookieInfo a:active {
  color: #afbfe1;
}
.cookieInfo .btn {
  border-color: #afbfe1;
}
@media (min-width: 540px) {
  .cookieInfo p {
    margin: 0;
  }
  .cookieInfo .row {
    display: flex;
    align-items: center;
  }
}

@keyframes scanAppTeaserFadeIn {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.scanAppTeaser {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 0;
  animation: scanAppTeaserFadeIn ease-in 0.25s;
  z-index: 2;
}
.scanAppTeaser .row {
  display: grid;
  grid-template-columns: 56px 1fr 68px;
  grid-gap: 8px;
}
.scanAppTeaser__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: solid 1px #edeeef;
  border-radius: 4px;
}
.scanAppTeaser__logo svg {
  width: 40px;
  height: 40px;
}
.scanAppTeaser__title {
  font-weight: 600;
}
.scanAppTeaser__text {
  font-size: 12px;
}
.scanAppTeaser__actions {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.scanAppTeaser__btnClose {
  position: absolute;
  top: -8px;
  right: 0;
  padding: 0 0 0 16px;
}
.scanAppTeaser__btnClose svg {
  width: 20px;
  height: 20px;
  fill: #444444;
}
.scanAppTeaser__btnInstall.btn {
  padding: 0 8px;
  color: #fff;
  background-color: #689f38;
  border: none;
}
.scanAppTeaser__btnInstall.btn:active, .scanAppTeaser__btnInstall.btn:hover {
  color: #fff;
}

.langNav {
  display: none;
}
.langNav--open {
  display: block;
}
.langNav .card {
  width: 420px;
}

.lnList {
  list-style: none;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 8px 0 32px 0;
}
.lnList__item {
  margin: 0;
  padding: 0;
  border-bottom: solid 1px rgba(22, 33, 57, 0.3);
}
.lnList__lnk {
  display: inline-block;
  padding: 8px 0;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.logo {
  display: flex;
  align-items: center;
}
.logo__svg {
  height: 40px;
}
@media (max-width: 539px) {
  .logo__svg {
    height: 32px;
  }
}
.logo__ft {
  fill: #2e3137;
}
.logo__fp {
  fill: #c71217;
}

.grid {
  display: grid;
  grid-gap: 24px;
}
@media (min-width: 800px) {
  .grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 800px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 800px) {
  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 800px) {
  .grid--2_1 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 800px) {
  .grid--1_2 {
    grid-template-columns: 1fr 2fr;
  }
}
@media (min-width: 800px) {
  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 800px) {
  .grid--sm {
    grid-gap: 8px;
  }
}
@media (min-width: 1024px) {
  .grid--sm {
    grid-gap: 12px;
  }
}
.grid--gapNone {
  grid-gap: 0;
}
@media (min-width: 800px) {
  .grid--gapNone {
    grid-gap: 0;
  }
}
@media (min-width: 1024px) {
  .grid--gapNone {
    grid-gap: 0;
  }
}
@media (min-width: 800px) {
  .grid--gapSm {
    grid-gap: 8px;
  }
}
@media (min-width: 1024px) {
  .grid--gapSm {
    grid-gap: 12px;
  }
}
@media (min-width: 800px) {
  .grid--gapLg {
    grid-gap: 48px;
  }
}
@media (min-width: 1024px) {
  .grid--gapLg {
    grid-gap: 48px;
  }
}
.grid--alignCenter {
  align-items: center;
}
.grid--alignStart {
  align-items: start;
}
.grid--alignEnd {
  align-items: end;
}
.grid .card {
  margin: 0;
}

.formRow {
  margin: 16px 0;
}
.formRow--required .formRow__label:after {
  content: "*";
  line-height: 0.8;
  margin-left: 0.5rem;
  font-size: 1rem;
}
.formRow--focus .formRow {
  box-shadow: 0 3px 16px rgba(22, 33, 57, 0.06), 0 3px 4px rgba(22, 33, 57, 0.2);
}
.formRow--error .formRow__label {
  color: #cc0000;
}
.formRow--error .formRow__control, .formRow--error .formRow__input {
  color: #cc0000;
  border-color: #cc0000;
}
.formRow__label {
  font-size: 14px;
}
.formRow__control {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.formRow__input {
  display: flex;
  align-items: center;
  border: solid 1px rgba(22, 33, 57, 0.3);
  border-radius: 6px;
  min-height: 48px;
  padding: 0 4px;
  background-color: #fff;
  color: #000;
  flex-grow: 1;
}
.formRow__input input,
.formRow__input select,
.formRow__input textarea {
  padding: 3.2px 8px;
  flex-basis: 100%;
  border: none;
  color: inherit;
  background-color: transparent;
}
.formRow__input textarea {
  padding: 8px 8px;
  height: 96px;
}
.formRow__inputAddOn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #edeeef;
  border: none;
  margin-right: -4px;
  cursor: pointer;
}
.formRow__inputIcon {
  width: 32px;
  height: 24px;
  margin: 0 8px;
}
.formRow__errorMessage {
  margin: 8px 0 0 0;
  color: #cc0000;
  font-size: 14px;
  display: block;
}
.formRow__hint {
  margin: 8px 0 0 0;
  font-size: 14px;
  display: block;
}

a.card {
  text-decoration: none;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 32px;
  color: #333333;
  box-shadow: 0 3px 24px rgba(22, 33, 57, 0.08), 0 3px 4px rgba(22, 33, 57, 0.24);
}
.card:hover {
  color: #333333;
}
.card > * {
  padding: 8px 24px;
}
.card > *:first-child {
  padding-top: 24px;
}
.card > *:last-child {
  padding-bottom: 24px;
}
.card--light {
  background-color: #edeeef;
}
.card--lighter {
  background-color: #f6f6f7;
}
.card--dark {
  background-color: #3660b3;
  color: #fff;
}
.card--dark h1,
.card--dark .h1,
.card--dark h2,
.card--dark .h2,
.card--dark h3,
.card--dark .h3,
.card--dark h4,
.card--dark .h4,
.card--dark h5,
.card--dark .h5 {
  color: #fff;
}
.card--flat {
  box-shadow: none;
  border: solid 1px #edeeef;
}
.card__header {
  padding-bottom: 16px;
  border-bottom: solid 1px rgba(22, 33, 57, 0.3);
}
.card__header h2,
.card__header .h2,
.card__header h3,
.card__header .h3,
.card__header h4,
.card__header .h4,
.card__header h5,
.card__header .h5 {
  margin: 0;
  padding: 0;
}
.card__header--flex {
  display: flex;
  align-items: center;
}
.card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card__body h3,
.card__body .h3,
.card__body h4,
.card__body .h4,
.card__body h5,
.card__body .h5 {
  margin: 0.5rem 0 1rem 0;
}
.card__body .btnRow:last-child {
  margin-bottom: 0;
}
.card__image {
  display: flex;
}
.card__image--alignCenter {
  justify-content: center;
}
.card__image--alignRight {
  justify-content: flex-end;
}
.card__image img {
  width: auto;
  max-width: 100%;
  display: block;
}
.card__media {
  display: block;
  background-color: #edeeef;
  overflow: hidden;
}
.card__media:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.card__media:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.card__media img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card__footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-grow: 0;
}
.card__footer li {
  margin: 0;
  padding: 0;
}

.cardList {
  display: grid;
  grid-gap: 16px;
  margin: 32px 0;
}
.cardList .card {
  margin: 0;
}

.respImg {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 3px 24px rgba(22, 33, 57, 0.08), 0 3px 4px rgba(22, 33, 57, 0.24);
  margin: 48px 0;
}
.respImg img {
  width: 100%;
  height: auto;
  display: block;
}

.fixedImg {
  display: block;
  overflow: hidden;
}
.fixedImg img {
  display: block;
  border-radius: 6px;
  margin: 32px 0;
  max-width: 100%;
  height: auto;
}

.image--center img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.image--right img {
  float: right;
}
.image--shadow img {
  box-shadow: 0 3px 24px rgba(22, 33, 57, 0.08), 0 3px 4px rgba(22, 33, 57, 0.24);
}

.img {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  margin: 32px 0;
}
.img img {
  width: 100%;
  height: auto;
  display: block;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
}
.icon--sm {
  width: 16px;
  height: 16px;
}
.icon--lg {
  width: 28px;
  height: 24px;
}
.icon--xl {
  width: 40px;
  height: 32px;
}
.icon svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: solid 1px rgba(22, 33, 57, 0.2);
  border-radius: 6px;
  height: 44px;
  padding: 0 24px;
  font-size: inherit;
  cursor: pointer;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: box-shadow 0.2s;
}
.btn:hover, .btn:focus {
  box-shadow: 0 3px 32px rgba(22, 33, 57, 0.12), 0 3px 4px rgba(22, 33, 57, 0.26);
  transition: box-shadow 0.2s;
  color: inherit;
}
.btn:active {
  box-shadow: 0 3px 24px rgba(22, 33, 57, 0.08), 0 3px 4px rgba(22, 33, 57, 0.24);
  transition: box-shadow 0.2s;
  color: inherit;
}
.btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn:disabled:hover, .btn:disabled:focus, .btn:disabled:active {
  box-shadow: none;
}
.btn__startIcon {
  margin-right: 8px;
  margin-left: -8px;
}
.btn__startIcon.btnLoader {
  margin-right: 11px;
  margin-left: -5px;
}
.btn__endIcon {
  margin-right: -8px;
  margin-left: 8px;
}
.btn--xs {
  height: 16px;
  padding: 0;
}
.btn--small {
  height: 32px;
  padding: 0 16px;
}
.btn--large {
  height: 48px;
  padding: 0 40px;
}
.btn--alignLeft {
  justify-content: flex-start;
  padding-right: 16px;
  padding-left: 16px;
}
.btn--default {
  background-color: #fff !important;
  color: #333333;
}
.btn--primary {
  background-color: #c71217 !important;
  color: #fff;
  border: none;
}
.btn--primary:hover, .btn--primary:focus, .btn--primary:active {
  color: #fff;
}
.btn--secondary {
  background-color: #3660b3 !important;
  color: #fff;
  border: none;
}
.btn--secondary:hover, .btn--secondary:focus, .btn--secondary:active {
  color: #fff;
}
.btn--round {
  width: 44px !important;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}
.btn--round.btn--small {
  width: 32px !important;
}
.btn--round.btn--large {
  width: 48px !important;
}
.btn--link {
  border: none;
  background-color: transparent !important;
  font-weight: 500;
}
.btn--link:hover, .btn--link:focus, .btn--link:active {
  box-shadow: none;
}
.btn--link.btn--primary {
  color: #c71217;
}
.btn--link.btn--secondary {
  color: #3660b3;
}
.btn--icon {
  border: none;
  background-color: transparent;
  width: 44px;
  justify-content: center;
  padding: 0;
}
.btn--icon:hover, .btn--icon:focus, .btn--icon:active {
  box-shadow: none;
}
.btn--icon.btn--small {
  width: 32px;
}
.btn--icon.btn--large {
  width: 48px;
}
.btn--iconButton {
  width: 44px;
  justify-content: center;
  padding: 0;
}
.btn--iconButton.btn--small {
  width: 32px !important;
}
.btn--iconButton.btn--large {
  width: 48px !important;
}
.btn--iconButton.btn .btn__startIcon {
  margin-right: 0;
  margin-left: 0;
}
.btn--iconButton.btn .btn__startIcon.btnLoader {
  margin-right: 0;
  margin-left: 0;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
}
.loader:before {
  content: " ";
  width: 48px;
  height: 48px;
  border: 5px solid #afbfe1;
  border-top-color: #3660b3;
  border-radius: 50%;
  animation: rotate 0.9s infinite linear;
}

.btnLoader {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #afbfe1;
  border-top-color: #3660b3;
  animation: rotate 0.9s infinite linear;
}
.btn--primary .btnLoader, .btn--secondary .btnLoader {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
}
.link .btnLoader {
  margin-left: 0;
}

.btnRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 32px 0 24px 0;
}
.btnRow--center {
  justify-content: center;
}
.btnRow--right {
  justify-content: flex-end;
}
.btnRow--m0 {
  margin: 0;
}
.btnRow--column {
  flex-direction: column;
}
@media (min-width: 540px) {
  .btnRow > *:not(:last-child) {
    margin-right: 16px;
  }
}
@media (max-width: 539px) {
  .btnRow {
    flex-direction: column;
    width: 100%;
  }
  .btnRow > * {
    width: 100%;
    margin-top: 16px;
  }
}

.dropdown {
  display: flex;
  flex-direction: column;
}
.dropdown--open .dropdown__menu {
  display: block;
}
.dropdown--selectList {
  width: 100%;
}
.dropdown--selectList .dropdown-caret {
  margin-left: auto;
}
.dropdown--selectList .dropdown__menu {
  max-height: 320px;
  overflow: auto;
}
.dropdown__wrapper {
  position: relative;
}
.dropdown__menu {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  position: absolute;
  top: 4px;
  background-color: #fff;
  border: solid 1px rgba(22, 33, 57, 0.3);
  min-width: 200px;
  display: none;
  z-index: 10;
  border-radius: 6px;
}
.dropdown__separator {
  height: 1px;
  border-bottom: solid 1px rgba(22, 33, 57, 0.3);
  margin: 4px 0;
}
.dropdown__menuItem button,
.dropdown__menuItem a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown__menuItem > * {
  padding: 6px 16px;
  display: flex;
  align-items: center;
  min-height: 40px;
}
.dropdown__menuItem .icon {
  margin-right: 12px;
}
.dropdown__menuItem:hover {
  color: #3660b3;
}
.dropdown--alignLeft .dropdown__menu {
  left: 0;
  right: auto;
}
.dropdown--alignCenter .dropdown__menu {
  text-align: center;
  right: 50%;
  transform: translateX(50%);
}
.dropdown--alignRight .dropdown__menu {
  right: 0;
}

.btnGroup {
  position: relative;
  display: flex;
  align-items: center;
  border-collapse: collapse;
  background-color: #edeeef;
  border-radius: 6px;
  min-height: 48px;
  max-width: 100%;
  overflow: hidden;
}
.btnGroup input {
  display: none;
}
.btnGroup__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 8px 4px;
  height: 100%;
  width: 160px;
  flex-grow: 1;
  color: rgba(51, 51, 51, 0.6);
}
.btnGroup__btn:not(:first-child) {
  border-left: solid 1px #fff;
}
.btnGroup__btn--selected {
  color: #fff;
  transition: all 0.2s ease-out;
  cursor: default;
}
.btnGroup.type-radio .btnGroup__btn {
  border-left: none !important;
}
.btnGroup__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  min-width: 1rem;
  background-color: #3660b3;
  transition: all 0.2s ease-out;
}
.btnGroup__label {
  font-size: 12px;
  text-align: center;
}
.btnGroup .icon {
  margin: 4px 0 8px 0;
  width: 32px;
  height: 28px;
}

.infoBox {
  margin: 32px 0;
  padding: 24px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 16px rgba(22, 33, 57, 0.06), 0 3px 4px rgba(22, 33, 57, 0.2);
}
@media (min-width: 540px) {
  .infoBox {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: 48px 1fr;
  }
}
@media (max-width: 539px) {
  .infoBox {
    text-align: center;
  }
}
.infoBox__icon {
  color: rgba(51, 51, 51, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 539px) {
  .infoBox__icon {
    margin-top: 16px;
    margin-bottom: 32px;
  }
}
.infoBox__icon .icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 539px) {
  .infoBox__icon .icon {
    width: 56px;
    height: 56px;
  }
}
.infoBox__content h3,
.infoBox__content h4 {
  margin-top: 8px;
}
.infoBox__content > a {
  text-decoration: none;
  color: inherit;
}
.infoBox__content > a:hover {
  color: #86a0d1;
}

.hint {
  margin: 48px 0;
  padding: 8px 0;
  background-color: #ffffff;
}
.hint .icon {
  width: 40px;
  height: 32px;
}
.hint--info {
  padding-left: 16px;
  border-color: #edeeef;
  border-left: solid 8px #0099cc;
}
.hint--warning {
  padding-left: 16px;
  border-color: #edeeef;
  border-left: solid 8px #ff8800;
}
.hint--error {
  padding-left: 16px;
  border-color: #edeeef;
  border-left: solid 8px #cc0000;
}
.hint--lighter {
  background-color: #f6f6f7;
}
.hint--tip {
  padding: 24px 16px;
  background-color: #f6f6f7;
  border-radius: 6px;
}
@media (min-width: 540px) {
  .hint--tip {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-gap: 16px;
  }
}
.hint--pro {
  padding: 24px 16px;
  border-radius: 6px;
  border: solid 1px rgba(22, 33, 57, 0.3);
  border-color: #edeeef;
}
.hint p:last-child {
  margin-bottom: 0;
}

.hintIcon--proOnly {
  display: inline-block;
  padding: 4px 8px;
  background-color: #2e3137;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.linkList {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 539px) {
  .linkList {
    align-items: center;
  }
}
.linkList__title {
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 539px) {
  .linkList__title {
    text-align: center;
  }
}
.linkList__item {
  display: flex;
  line-height: 1.3;
}
.linkList__item a {
  color: inherit;
  padding: 8px 0;
  text-decoration: none;
}
.linkList__item a:hover, .linkList__item a:active {
  color: #86a0d1;
}

.accordion__card {
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 24px;
  color: #333333;
  box-shadow: 0 3px 24px rgba(22, 33, 57, 0.08), 0 3px 4px rgba(22, 33, 57, 0.24);
  padding: 8px 24px;
}
.accordion__card--open h3::after {
  transform: rotate(90deg);
  transition: all ease-in 0.2s;
}
.accordion__header {
  position: relative;
}
.accordion__header h3 {
  cursor: pointer;
  display: flex;
  padding: 4px 32px 4px 0;
  font-size: 18px;
  color: #3660b3;
}
.accordion__header h3:hover {
  color: #86a0d1;
}
.accordion__header h3::after {
  content: "❯";
  position: absolute;
  right: -8px;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ebeff7;
  color: #3660b3;
  transition: all ease-in 0.2s;
  margin-right: 8px;
}
.accordion__body {
  overflow: hidden;
  height: 0;
  transition: all ease-in 0.2s;
}
.accordion__body > div {
  padding: 16px 0;
}
.accordion__body .lnkReadMore {
  text-decoration: none;
  color: #3660b3;
  font-weight: 500;
}

.lnSelector {
  display: flex;
  padding: 8px;
  font-weight: 400;
}

.loginButtons {
  display: block;
  margin: 16px 0;
}

.btn--login {
  display: flex;
  justify-content: flex-start;
  height: 48px;
  width: 100%;
  margin: 16px 0;
  padding: 0;
  border: none;
}
.btn--login img {
  width: 48px;
  height: 48px;
}
.btn--login span {
  margin-right: 48px;
  flex-grow: 1;
}

@media (max-width: 800px) {
    .btn--label {
        display: none;
    }
    .loginButtons {
        display:flex;
        justify-content:space-between;
    }
    .btn--login{
        margin: 16px 10px;
        width: 48px;
    }
}


.btn--Facebook {
  background-color: #1877f2;
  border-color: #1877f2;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn--Facebook:hover, .btn--Facebook:active {
  color: #fff;
}
.btn--Google {
    background-color: #4285f4;
    border-color: #4285f4;
    color: #fff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn--Google img {
  background-color: #fff;
  border: solid 2px #4285f4;
  border-radius: 4px;
}
.btn--Google:hover, .btn--Google:active {
  color: #fff;
}
.btn--Microsoft {
  background-color: #fff;
  border: solid 1px #8c8c8c;
  color: #5e5e5e;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn--Microsoft:hover, .btn--Microsoft:active {
  color: #5e5e5e;
}
.btn--Apple {
  background-color: #000;
  border: solid 1px #8c8c8c;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn--Apple img {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}
.btn--Apple:hover, .btn--Apple:active {
  color: #fff;
}

.btn--GitHub {
  background-color: #fff;
  border: solid 1px #8c8c8c;
  color: #5e5e5e;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn--GitHub img {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}
.btn--GitHub :hover, .btn--GitHub :active {
  color: #5e5e5e;
}    

.signInFormSpacer {
  margin: 0;
  text-align: center;
}

.cloudBg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.cloudBg canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.text--xs {
  font-size: 12px;
}
.text--xs label {
  font-size: 12px;
}

.loginForm {
  margin: auto;
  width: 100%;
  max-width: 380px;
  z-index: 1;
  overflow: hidden;
  color: #333333;
}
@media (min-width: 800px) {
  .loginForm {
    box-shadow: 0 3px 40px rgba(22, 33, 57, 0.18), 0 3px 4px rgba(22, 33, 57, 0.3);
    border: 16px;
    max-width: 720px;
  }
  .loginForm .formRow__input {
    min-height: 48px;
  }
  .loginForm .btnRow {
    margin: 32px 0;
  }
}
.loginForm a {
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 539px) {
  .loginForm {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    border-radius: 0;
    box-shadow: none;
    max-width: unset;
  }
}
@media (min-width: 800px) {
  .loginForm .card {
    border-radius: 16px;
  }
}
.loginForm .card__header {
  border: none;
}
@media (min-width: 800px) {
  .loginForm .card__header {
    padding: 32px 32px 16px 32px;
  }
}
@media (min-width: 800px) {
  .loginForm .card__body {
    padding: 16px 32px 32px 32px;
  }
}
.loginForm h1 {
  margin-top: 0;
}
@media (min-width: 540px) {
  .loginForm .card__body {
    max-height: calc(100vh - 100px);
    overflow: auto;
  }
}

.logo {
  height: 36px;
}
@media (max-width: 539px) {
  .logo {
    height: 30px;
  }
}

.signInAdd {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.btn--fw {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 800px) {
  .loginGrid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    grid-gap: 32px;
  }
}
.loginGrid__spacer {
  display: none;
}
@media (min-width: 800px) {
  .loginGrid__spacer {
    display: block;
    width: 1px;
    background-color: #edeeef;
  }
}