/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:initial}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:initial}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:initial;height:0}pre{overflow:auto;margin:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{box-sizing:initial}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}button,input,label,select,textarea{margin:0;border:0;padding:0;display:inline-block;vertical-align:middle;white-space:normal;background:none;line-height:1;font-size:13px;font-family:Arial}input:focus{outline:0}input,textarea{-webkit-box-sizing:content-box;box-sizing:initial}button,input[type=button],input[type=checkbox],input[type=radio],input[type=reset],input[type=submit],select{-webkit-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{width:13px;height:13px}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box}::-webkit-search-decoration{display:none}button,input[type=button],input[type=reset],input[type=submit]{overflow:visible;width:auto}::-webkit-file-upload-button{padding:0;border:0;background:none}textarea{vertical-align:top;overflow:auto}select[multiple]{vertical-align:top}
/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.Select input::-ms-clear {
  display: none !important;
}
.Select input::-ms-reveal {
  display: none !important;
}
.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}
.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.Select.is-focused > .Select-control {
  background: #fff;
}
.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  background: #fff;
}
.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}
.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}
.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.Select-control > *:last-child {
  padding-right: 5px;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}
.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}

.tippy-tooltip{color:#fff;background-color:"#444";font-size:1rem;-webkit-font-smoothing:subpixel-antialiased;max-width:350px;word-break:break-word;line-height:1.5rem}
.hljs-comment,.hljs-quote{color:#8e908c}.hljs-deletion,.hljs-name,.hljs-regexp,.hljs-selector-class,.hljs-selector-id,.hljs-tag,.hljs-template-variable,.hljs-variable{color:#0058a9}.hljs-attr,.hljs-built_in,.hljs-builtin-name,.hljs-link,.hljs-literal,.hljs-meta,.hljs-number,.hljs-params,.hljs-type{color:#750507}.hljs-attribute{color:#eab700}.hljs-addition,.hljs-bullet,.hljs-string,.hljs-symbol{color:#750507}.hljs-section,.hljs-title{color:#4271ae}.hljs-keyword,.hljs-selector-tag{color:#8959a8}.hljs{display:block;color:#4d4d4c;padding:.5em}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}
:root{--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.auth0__h1___lGqdj{font-size:2rem}.auth0__h1___lGqdj,.auth0__h2___KerGC{font-weight:700}.auth0__h2___KerGC{font-size:1.5rem;line-height:2.7rem;text-align:center}.auth0__h3___s6BZ7{font-size:1.3rem}.auth0__h3___s6BZ7,.auth0__h4___YwNdp{font-weight:700;letter-spacing:.5px}.auth0__h4___YwNdp{font-size:1.1rem}.auth0__h5___v_PDi{font-size:.75rem}.auth0__h5___v_PDi,.auth0__smallCaps___AzfDa{text-transform:uppercase}.auth0__smallCaps___AzfDa{font-size:.8rem;font-weight:400;letter-spacing:.8px}.auth0__paragraph___gbNyc{font-size:1.1rem;font-weight:400;line-height:1.6rem}.auth0__bold___QnhEy{font-weight:700}body .auth0-lock-widget{font-family:proxima-vara,sans-serif!important;-webkit-box-shadow:none!important;box-shadow:none!important;border:1px solid #e6e6e6!important;border:1px solid var(--lightGray)!important;-webkit-transition:none!important;transition:none!important}body .auth0-lock-overlay{background:none!important;background-color:#f9f9f9!important;background-color:var(--ultraLightGray)!important}body .auth0-lock-badge-bottom,body .auth0-lock-header-bg{display:none!important}body .auth0-lock.auth0-lock .auth0-lock-social-button.auth0-lock-social-big-button[data-provider=auth0]{background:#926fca!important;background:var(--purple)!important}body .auth0-lock-social-big-button{background:#4285f4!important}body .auth0-lock-custom-icon{left:10px!important;top:10px!important;width:18px}body .auth0-lock-submit{height:70px}
.StripeElement{display:block;margin:10px 0 20px;max-width:500px;padding:10px 14px;font-size:1em;font-family:Source Code Pro,monospace;-webkit-box-shadow:rgba(50,50,93,.14902) 0 1px 3px,rgba(0,0,0,.0196078) 0 1px 0;box-shadow:0 1px 3px rgba(50,50,93,.14902),0 1px 0 rgba(0,0,0,.0196078);border:0;outline:0;border-radius:4px;background:#fff}.StripeElement--focus{-webkit-box-shadow:rgba(50,50,93,.109804) 0 4px 6px,rgba(0,0,0,.0784314) 0 1px 3px;box-shadow:0 4px 6px rgba(50,50,93,.109804),0 1px 3px rgba(0,0,0,.0784314);-webkit-transition:all .15s ease;transition:all .15s ease}.StripeElement.FpxBankElement,.StripeElement.IdealBankElement,.StripeElement.PaymentRequestButton{padding:0}.StripeElement.PaymentRequestButton{height:40px}
#responsive__auth0-lock___B7Iuf{overflow-y:auto}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.core__h1___dWeE8{font-size:2rem}.core__h1___dWeE8,.core__h2___p4BkG{font-weight:700}.core__h2___p4BkG{font-size:1.5rem;line-height:2.7rem;text-align:center}.core__h3___mg7rz{font-size:1.3rem}.core__h3___mg7rz,.core__h4___tJEHh{font-weight:700;letter-spacing:.5px}.core__h4___tJEHh{font-size:1.1rem}.core__h5___hlNri{font-size:.75rem}.core__h5___hlNri,.core__smallCaps___I51l1{text-transform:uppercase}.core__smallCaps___I51l1{font-size:.8rem;font-weight:400;letter-spacing:.8px}.core__paragraph___IG53X{font-size:1.1rem;font-weight:400;line-height:1.6rem}.core__bold___vTprx{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}html{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:subpixel-antialiased;scrollbar-gutter:stable}body,html{margin:0;padding:0;font-family:proxima-vara,sans-serif;font-weight:400;font-size:11px;color:#222224}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}a{color:inherit;text-decoration:inherit}.link-button{color:#fff;color:var(--white);background-color:#926fca;background-color:var(--purple);border:0;padding:1rem 1.8rem;-webkit-transition:background-color .3s ease;transition:background-color .3s ease;border-radius:5px;height:3rem;line-height:3.2rem;white-space:nowrap;font-size:1.1rem}.link-button:hover{background-color:#39225d}.link-button span.fa{margin-right:.5rem}p{font-size:1.2rem;line-height:2rem}@media print{body,html{font-size:10px!important}#sideBarContainer{display:none!important}#activeViewContainer{left:0!important}*{overflow:visible!important}.no-print{display:none!important}}body.hide-wootric-modal #wootric-modal{display:none}@media (max-width:900px){#wootric-modal{display:none}}#_elev_io ._hedvd{padding-bottom:1rem}#_elev_io ._sbgx4._1dfpw{display:none}#_elev_io_placebo{display:none!important}._elevio_widget article#_elev_io>iframe{margin-top:-20px}._elevio_widget ._elevio_articlefeedback,._elevio_widget ._elevio_close,._elevio_widget ._elevio_navbar+div,._elevio_widget ._elevio_navbar>:first-child>:first-child{display:none}._elevio_widget>:first-child{-webkit-box-shadow:none!important;box-shadow:none!important;border-left:#9c9c9c;border-left:var(--gray);border-style:solid;border-left-width:1px}#wootric-modal{width:450px!important;margin-left:20px!important}#wootric-modal .wootric-beacon-parent{border-top:none!important;-webkit-box-shadow:0 0 10px 0 #cacaca!important;box-shadow:0 0 10px 0 #cacaca!important;border-top-left-radius:5px!important;border-top-right-radius:5px!important}#wootric-modal .wootric-score{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important;margin:0 20px!important}#wootric-modal li{border-radius:2px!important;padding:9px 12px!important}#wootric-modal li:last-child{padding:9px!important}#wootric-modal li.selected,#wootric-modal li.selected:hover{background-color:#926fca!important;background-color:var(--purple)!important;border-color:#926fca!important;border-color:var(--purple)!important}#wootric-modal #wootric-language-direction{margin:15px 20px 15px 24px!important;text-align:left!important;padding-left:0!important;color:#000!important}#wootric-modal #wootric-fullscore #wootric-not-likely-label{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;padding:0 0 0 3px!important}#wootric-modal #wootric-fullscore #wootric-score{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important;width:100%!important}#wootric-modal #wootric-fullscore #wootric-likely-label{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important;padding-right:6px!important;padding-top:0!important}#wootric-modal #wootric-feedback textarea{color:#111!important}#wootric-modal #wootric-thanks{margin-top:10px!important}#wootric-modal.modal-locked #wootric-thanks{margin:15px!important}#wootric-modal #wootric-thanks p{color:#575757!important;color:var(--darkGray)!important;line-height:normal!important}#wootric-modal #wootric-feedback{padding:20px 0}#wootric-modal #wootric-feedback.collapsed{display:none!important}.tippy-tooltip{font-size:1.1rem;padding:.6rem 1rem}
.Stack__vstack___Pfofi{--space:1rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Stack__vstack___Pfofi>*+*{margin-top:1rem;margin-top:var(--space)}.Stack__vstack___Pfofi>:nth-child(2){margin-bottom:0}.Stack__hstack___U8Jxm{--space:1rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.Stack__hstack___U8Jxm>*+*{margin-left:1rem;margin-left:var(--space)}.Stack__hstack___U8Jxm>:nth-child(2){margin-bottom:0}
input[type=range]{-webkit-appearance:none;width:100%;background:transparent}input[type=range]:focus{outline:none}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;border:2px solid grey;background:#fff;height:17px;width:17px;margin-top:-7px;border-radius:100%;cursor:pointer}input[type=range]:active::-webkit-slider-thumb{background:#d3d3d3}input[type=range].ValueSlider__focus-visible___cpnc3::-webkit-slider-thumb,input[type=range]:focus-visible::-webkit-slider-thumb{outline:2px solid #0847c0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:6px;cursor:pointer;background-image:-webkit-gradient(linear,left top,right top,from(#f0f0f0),to(grey));background-image:linear-gradient(90deg,#f0f0f0,grey);border-radius:25px}input[type=range]::-moz-range-thumb{border:2px solid grey;background:#fff;height:1.2rem;width:1.2rem;border-radius:100%;cursor:pointer}input[type=range]:active::-moz-range-thumb{background:#d3d3d3}input[type=range].ValueSlider__focus-visible___cpnc3::-moz-range-thumb,input[type=range]:focus-visible::-moz-range-thumb{outline:2px solid #0847c0}input[type=range]::-moz-range-track{width:100%;height:6px;cursor:pointer;background-image:linear-gradient(90deg,#f0f0f0,grey);border-radius:25px}input[type=range]::-ms-thumb{border:2px solid grey;background:#fff;height:1.2rem;width:1.2rem;border-radius:100px;cursor:pointer}input[type=range]:active::-ms-thumb{background:#d3d3d3}input[type=range].ValueSlider__focus-visible___cpnc3::-ms-thumb,input[type=range]:focus-visible::-ms-thumb{outline:2px solid #0847c0}input[type=range]::-ms-track{width:100%;height:6px;cursor:pointer;background:transparent;border-color:transparent;color:transparent;background-image:linear-gradient(90deg,#f0f0f0,grey);border-radius:25px;margin-left:15px}
:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.InputSelect__ReactSelect___fwEVv .Select-control{height:3.7rem!important;border:2px solid #e6e6e6!important;border:2px solid var(--lightGray)!important;font-size:13px!important;color:#575757;color:var(--darkGray)}.InputSelect__ReactSelect___fwEVv .is-focused>.Select-control,.InputSelect__ReactSelect___fwEVv .Select-control:hover{-webkit-box-shadow:none!important;box-shadow:none!important}.InputSelect__ReactSelect___fwEVv .is-focused>.Select-control{border:2px solid #926fca!important;border:2px solid var(--purple)!important}.InputSelect__ReactSelect___fwEVv .Select-placeholder{line-height:3.8rem!important;color:grey}.InputSelect__ReactSelect___fwEVv .Select-value{line-height:3.4rem!important;font-size:13px!important;padding-left:1rem!important;padding-right:1rem!important}.InputSelect__ReactSelect___fwEVv .Select--single .Select-value-label{position:relative;top:1px;line-height:3.4rem!important;color:#575757!important;color:var(--darkGray)!important}.InputSelect__ReactSelect___fwEVv .Select-input{height:3.4rem!important}.InputSelect__ReactSelect___fwEVv .Select-arrow{-webkit-transform:translateY(.1rem)!important;transform:translateY(.1rem)!important}.InputSelect__ReactSelect___fwEVv .Select-menu-outer{border:2px solid #e6e6e6!important;border:2px solid var(--lightGray)!important;border-top:0 solid var(--lightGray)!important;font-size:13px;max-height:340px!important;max-height:338px!important;z-index:4}.InputSelect__ReactSelect___fwEVv .Select-menu{max-height:336px!important}.InputSelect__ReactSelect___fwEVv .Select-option.is-selected{background-color:#f6f6f6;background-color:var(--veryVeryLightGray)}.InputSelect__ReactSelect___fwEVv .Select-option.is-focused{background-color:#f0f0f0;background-color:var(--veryLightGray)}.InputSelect__ReactSelect___fwEVv .Select--multi .Select-value{line-height:2rem!important;padding-top:1px!important;padding-left:0!important;padding-right:0!important;color:#222!important;border:none;background-color:#ececec;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.InputSelect__ReactSelect___fwEVv .Select--multi .Select-value .Select-value-icon{padding:.3rem .5rem .1rem!important;border-right:none}.InputSelect__ReactSelect___fwEVv .Select--multi .Select-value .Select-value-icon:hover{color:#666;background-color:#e3e3e3!important}.InputSelect__ReactSelect___fwEVv .Select--multi .Select-value .Select-value-label{line-height:2rem!important;padding:2px 8px!important}
.react-toggle {
  touch-action: pan-x;

  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
}

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.react-toggle-track {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000;
}

.react-toggle--checked .react-toggle-track {
  background-color: #19AB27;
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #128D15;
}

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #19AB27;
}

.react-toggle--focus .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 3px 2px #0099E0;
  -moz-box-shadow: 0px 0px 3px 2px #0099E0;
  box-shadow: 0px 0px 2px 3px #0099E0;
}

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  -webkit-box-shadow: 0px 0px 5px 5px #0099E0;
  -moz-box-shadow: 0px 0px 5px 5px #0099E0;
  box-shadow: 0px 0px 5px 5px #0099E0;
}

@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.ContextMenu__h1___xQoK_{font-size:2rem}.ContextMenu__h1___xQoK_,.ContextMenu__h2___ntuGR{font-weight:700}.ContextMenu__h2___ntuGR{font-size:1.5rem;line-height:2.7rem;text-align:center}.ContextMenu__h3___RYpq1{font-size:1.3rem}.ContextMenu__h3___RYpq1,.ContextMenu__h4___pxbAi{font-weight:700;letter-spacing:.5px}.ContextMenu__h4___pxbAi{font-size:1.1rem}.ContextMenu__h5___hL4uo{font-size:.75rem}.ContextMenu__h5___hL4uo,.ContextMenu__smallCaps___rhCZb{text-transform:uppercase}.ContextMenu__smallCaps___rhCZb{font-size:.8rem;font-weight:400;letter-spacing:.8px}.ContextMenu__paragraph___VRrUG{font-size:1.1rem;font-weight:400;line-height:1.6rem}.ContextMenu__bold___R4aFi{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.ContextMenu__container___wgCAn{position:absolute;background-color:#f9f9f9;background-color:var(--ultraLightGray);border-radius:2px;-webkit-box-shadow:0 1px 15px rgba(0,0,0,.15);box-shadow:0 1px 15px rgba(0,0,0,.15);border:1px solid #d4d4d4;font-size:1.1rem;min-width:15rem;padding:0;z-index:200;color:#575757;color:var(--darkGray);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.ContextMenu__openUp___KAynG{-webkit-transform:translateY(-100%);transform:translateY(-100%);margin-left:.75rem}.ContextMenu__openBottomLeft___HDnA3,.ContextMenu__openDown___uKFnk{margin-top:.75rem}.ContextMenu__openBottomLeft___HDnA3{right:0}.ContextMenu__openLeft___i1vQ4{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.ContextMenu__option___cw0dq{padding:1rem 1.5rem .8rem;-webkit-box-flex:1;-ms-flex:1;flex:1;cursor:pointer}.ContextMenu__option___cw0dq:hover{background-color:#e3daf1}.ContextMenu__active___kt9FF{font-weight:700}.ContextMenu__icon___SIBIk{margin-right:.75rem}
.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top;
}
.react-grid-item img {
  pointer-events: none;
  user-select: none;  
}
.react-grid-item.cssTransforms {
  transition-property: transform;
}
.react-grid-item.resizing {
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.dropping {
  visibility: hidden;
}

.react-grid-item.react-grid-placeholder {
  background: red;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
}

.react-grid-item > .react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.react-resizable-hide > .react-resizable-handle {
  display: none;
}

.react-grid-item > .react-resizable-handle.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w,
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n,
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}

.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+);
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.FormView__h1____Eka2{font-size:2rem}.FormView__h1____Eka2,.FormView__h2___IJxs2{font-weight:700}.FormView__h2___IJxs2{font-size:1.5rem;line-height:2.7rem;text-align:center}.FormView__h3___sBiO_{font-size:1.3rem}.FormView__h3___sBiO_,.FormView__h4___GTfnp{font-weight:700;letter-spacing:.5px}.FormView__h4___GTfnp{font-size:1.1rem}.FormView__h5___AlKFe{font-size:.75rem}.FormView__h5___AlKFe,.FormView__smallCaps___eVyId{text-transform:uppercase}.FormView__smallCaps___eVyId{font-size:.8rem;font-weight:400;letter-spacing:.8px}.FormView__paragraph___ZNFi3{font-size:1.1rem;font-weight:400;line-height:1.6rem}.FormView__bold___EkFIO{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.FormView__container___Ovp9l{position:relative;height:calc(100% - 2rem);margin-top:1rem;width:calc(100% - 3rem);margin-left:2rem;background-color:#fcfcfc;background-color:var(--darkWhite);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.07);box-shadow:0 1px 6px rgba(0,0,0,.07);overflow-y:auto;overflow-x:hidden;padding:3rem}.FormView__content___Jjmo7{max-width:45rem;margin-bottom:3rem;position:relative}.FormView__sectionMarginBottom___TmodR{margin-bottom:5rem}.FormView__sectionExtraMarginBottom___eAb9y{margin-bottom:10rem}.FormView__description___izGGh{margin:1rem 0 2rem;font-size:1.2rem;line-height:2rem}.FormView__descriptionBlurb___63dzL{margin-bottom:2rem}.FormView__subDescription___LAybV{margin:1rem 0 2rem;font-size:1.1rem;line-height:2rem;display:-webkit-box;display:-ms-flexbox;display:flex}.FormView__inputField___QJnkg{margin:2rem 0}.FormView__inlineInputField___qhwp9{margin:0 .25rem 0 .5rem;display:inline-block;width:4rem}.FormView__inlineInput___Gnfkl{text-align:center;padding-left:0;padding-right:0}.FormView__title___nujPX{font-size:2rem;font-weight:700;margin-bottom:2rem;max-width:50rem;color:#252525;color:var(--veryDarkGray)}.FormView__titleLink___FBQ3P{float:right;line-height:2rem;font-weight:400;font-size:1rem;color:#926fca;color:var(--purple);text-decoration:underline}.FormView__subTitle___dp5OL{font-size:1.4rem;font-weight:700;font-weight:var(--bold)}.FormView__button___YKeAT{margin-top:2rem}.FormView__toggle___nIWcf{margin-right:2rem}.FormView__itemSelector___q2D_s{margin:2rem auto}.FormView__deleteBlock___OADgT,.FormView__inlineButton___zSeVi{display:inline-block}.FormView__deleteFooter___jZVfd{width:100%;margin-top:3rem}.FormView__deleteFooter___jZVfd,.FormView__deleteFooterBottom___VI8Op{border-top:2px solid #e6e6e6;border-top:2px solid var(--lightGray)}.FormView__deleteFooterBottom___VI8Op{position:absolute;right:2rem;left:2rem;bottom:3rem}.FormView__deleteText___axCnF{cursor:pointer;color:#926fca;color:var(--purple);text-decoration:underline;margin-top:1.5rem}.FormView__select___gxy6b{margin-bottom:2rem}.FormView__errors___JPBhO{color:#750507;color:var(--darkRed);margin-bottom:1rem}.FormView__ReactSelect___AI39P .Select-control{height:3.7rem!important;border:2px solid #e6e6e6!important;border:2px solid var(--lightGray)!important;font-size:1.1rem;font-color:#575757;font-color:var(--darkGray)}.FormView__ReactSelect___AI39P .Select-placeholder,.FormView__ReactSelect___AI39P .Select-value,.FormView__ReactSelect___AI39P .Select-value-label{line-height:3.8rem!important}.FormView__ReactSelect___AI39P .Select-input{height:3.7rem!important;line-height:3.8rem!important}.FormView__ReactSelect___AI39P .Select-arrow{-webkit-transform:translateY(.1rem)!important;transform:translateY(.1rem)!important}
:root{--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.InputField__h1___I7rMD{font-size:2rem}.InputField__h1___I7rMD,.InputField__h2___I145B{font-weight:700}.InputField__h2___I145B{font-size:1.5rem;line-height:2.7rem;text-align:center}.InputField__h3___u8QQj{font-size:1.3rem}.InputField__h3___u8QQj,.InputField__h4___hQ4KK{font-weight:700;letter-spacing:.5px}.InputField__h4___hQ4KK{font-size:1.1rem}.InputField__h5___H3K_H{font-size:.75rem}.InputField__h5___H3K_H,.InputField__smallCaps___N5x3r{text-transform:uppercase}.InputField__smallCaps___N5x3r{font-size:.8rem;font-weight:400;letter-spacing:.8px}.InputField__paragraph___ui2KH{font-size:1.1rem;font-weight:400;line-height:1.6rem}.InputField__bold___XJL8t{font-weight:700}.InputField__input___rjYLq{padding:1rem;border-radius:5px;border:2px solid #e6e6e6;border:2px solid var(--lightGray);width:100%;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff;background-color:var(--white);color:#575757;color:var(--darkGray);-webkit-appearance:none;-moz-appearance:none;appearance:none}.InputField__input___rjYLq::-ms-input-placeholder{color:#9c9c9c!important;color:var(--gray)!important}.InputField__input___rjYLq::placeholder{color:#9c9c9c!important;color:var(--gray)!important}.InputField__input___rjYLq::-webkit-input-placeholder{color:#9c9c9c!important;color:var(--gray)!important}.InputField__input___rjYLq::-moz-placeholder{color:#9c9c9c!important;color:var(--gray)!important}.InputField__input___rjYLq:-ms-input-placeholder{color:#9c9c9c!important;color:var(--gray)!important}.InputField__input___rjYLq :input-placeholder{color:#926fca;color:var(--purple)}.InputField__input___rjYLq:focus,.InputField__inputFocus___fMCRs{-webkit-box-shadow:none;box-shadow:none;border-color:#926fca;border-color:var(--purple);-webkit-box-shadow:0 0 1px #926fca;box-shadow:0 0 1px #926fca;-webkit-box-shadow:0 0 1px var(--purple);box-shadow:0 0 1px var(--purple)}.InputField__description___w8YU_{margin:.5rem 0;color:#575757;color:var(--darkGray)}.InputField__errors___wTAIl{margin-top:.4rem;color:#96090d;color:var(--red)}.InputField__title___kMX2I{margin-bottom:.5rem;font-size:1.2rem;font-weight:500;font-weight:var(--medium)}.InputField__select___bDhJs{color:#575757;color:var(--darkGray)}.InputField__suffix___PxVH2{display:inline-block;top:2px;position:relative;font-size:13px;font-weight:bolder;margin-left:1px}:root{--selectHeight:calc(19px + 2rem)}.InputField__ReactSelect___HWRhi .Select-control{height:calc(19px + 2rem)!important;height:var(--selectHeight)!important;border:2px solid #e6e6e6!important;border:2px solid var(--lightGray)!important;font-size:13px;color:#575757;color:var(--darkGray);display:block!important}.InputField__ReactSelect___HWRhi .Select-control:hover{-webkit-box-shadow:none;box-shadow:none}.InputField__ReactSelect___HWRhi .is-focused>.Select-control{border:2px solid #926fca!important;border:2px solid var(--purple)!important}.InputField__ReactSelect___HWRhi .is-focused>.Select-control,.InputField__ReactSelect___HWRhi .is-open>.Select-control{-webkit-box-shadow:0 0 1px #926fca;box-shadow:0 0 1px #926fca;-webkit-box-shadow:0 0 1px var(--purple);box-shadow:0 0 1px var(--purple)}.InputField__ReactSelect___HWRhi .is-open>.Select-control{border:2px solid #926fca!important;border:solid var(--purple)!important;border-width:2px 2px 0!important}.InputField__ReactSelect___HWRhi .Select-option.is-selected{background-color:#f6f6f6;background-color:var(--veryVeryLightGray)}.InputField__ReactSelect___HWRhi .Select-option.is-focused{background-color:#f0f0f0;background-color:var(--veryLightGray)}.InputField__ReactSelect___HWRhi .Select-menu-outer{border:2px solid #926fca!important;border:2px solid var(--purple)!important;border-top:0 solid var(--purple)!important}.InputField__ReactSelect___HWRhi .Select-placeholder{line-height:3.4rem!important;color:#9c9c9c;color:var(--gray)}.InputField__ReactSelect___HWRhi .Select--single>.Select-control .Select-value,.InputField__ReactSelect___HWRhi .Select-placeholder{padding-left:1rem;padding-right:1rem}.InputField__ReactSelect___HWRhi .Select-input,.InputField__ReactSelect___HWRhi .Select-value,.InputField__ReactSelect___HWRhi .Select-value-label{line-height:calc(19px + 2rem)!important;line-height:var(--selectHeight)!important}.InputField__ReactSelect___HWRhi .Select-input{height:calc(19px + 1.9rem)!important;height:calc(var(--selectHeight) - .1rem)!important}.InputField__ReactSelect___HWRhi .Select-arrow-zone{right:0;position:absolute;top:calc(50% - 7.5px)}.InputField__ReactSelect___HWRhi .Select-arrow{-webkit-transform:translateY(.1rem)!important;transform:translateY(.1rem)!important}
:root{--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.ActionWithConfirmation__h1___rrdTX{font-size:2rem}.ActionWithConfirmation__h1___rrdTX,.ActionWithConfirmation__h2___LmxhN{font-weight:700}.ActionWithConfirmation__h2___LmxhN{font-size:1.5rem;line-height:2.7rem;text-align:center}.ActionWithConfirmation__h3___Lrkx5{font-size:1.3rem}.ActionWithConfirmation__h3___Lrkx5,.ActionWithConfirmation__h4___KlwoB{font-weight:700;letter-spacing:.5px}.ActionWithConfirmation__h4___KlwoB{font-size:1.1rem}.ActionWithConfirmation__h5___Yr42c{font-size:.75rem}.ActionWithConfirmation__h5___Yr42c,.ActionWithConfirmation__smallCaps___H17hk{text-transform:uppercase}.ActionWithConfirmation__smallCaps___H17hk{font-size:.8rem;font-weight:400;letter-spacing:.8px}.ActionWithConfirmation__paragraph___dgHmE{font-size:1.1rem;font-weight:400;line-height:1.6rem}.ActionWithConfirmation__bold___Hu2TH{font-weight:700}.ActionWithConfirmation__buttons___HPDhf{margin-top:2rem}.ActionWithConfirmation__cancelButton___isnAm{color:#9c9c9c;color:var(--gray);background-color:#fff;background-color:var(--white);border:1px solid #9c9c9c;border:1px solid var(--gray);margin-right:1rem}.ActionWithConfirmation__cancelButton___isnAm:hover{background-color:#e6e6e6;background-color:var(--lightGray)}.ActionWithConfirmation__primaryButton___DROKP{display:inline-block}
:root{--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.AppIntegrationsView__h1___mb6pH{font-size:2rem}.AppIntegrationsView__h1___mb6pH,.AppIntegrationsView__h2___lNGp6{font-weight:700}.AppIntegrationsView__h2___lNGp6{font-size:1.5rem;line-height:2.7rem;text-align:center}.AppIntegrationsView__h3___i5JO1{font-size:1.3rem}.AppIntegrationsView__h3___i5JO1,.AppIntegrationsView__h4___zOCF7{font-weight:700;letter-spacing:.5px}.AppIntegrationsView__h4___zOCF7{font-size:1.1rem}.AppIntegrationsView__h5___VtmLD{font-size:.75rem}.AppIntegrationsView__h5___VtmLD,.AppIntegrationsView__smallCaps___m5JXE{text-transform:uppercase}.AppIntegrationsView__smallCaps___m5JXE{font-size:.8rem;font-weight:400;letter-spacing:.8px}.AppIntegrationsView__paragraph___TTp3A{font-size:1.1rem;font-weight:400;line-height:1.6rem}.AppIntegrationsView__bold___OVMoz{font-weight:700}.AppIntegrationsView__content___hf40W{max-width:65rem}.AppIntegrationsView__activeTilesContainer____A1ea{display:flex-wrap}.AppIntegrationsView__introDescription___SqYgb{margin-bottom:3rem}.AppIntegrationsView__tileContainer___PglNE{position:relative;width:11rem;height:10rem;background-color:#fff;background-color:var(--white);margin-right:1rem;margin-bottom:1rem;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-radius:.2rem;border:1px solid #f9f9f9;border:1px solid var(--ultraLightGray);-webkit-box-shadow:0 1px 1px 1px #e6e6e6;box-shadow:0 1px 1px 1px #e6e6e6;cursor:pointer;-webkit-transition:all .3s ease;transition:all .3s ease}.AppIntegrationsView__tileContainer___PglNE:hover{-webkit-box-shadow:0 1px 2px 3px #e6e6e6;box-shadow:0 1px 2px 3px #e6e6e6}.AppIntegrationsView__tileImg___FBWGC{height:4rem;margin-top:1rem}.AppIntegrationsView__tileName___B9yMm{font-weight:500;font-weight:var(--medium);font-size:1.2rem;margin-top:1rem}.AppIntegrationsView__status___MMxFA{margin-top:.5rem}.AppIntegrationsView__statusLight___zTgmN{display:inline-block;border-radius:100%;width:.7rem;height:.7rem;background-color:#e6e6e6;background-color:var(--lightGray);margin-right:.5rem;-webkit-transform:translateY(-.1rem);transform:translateY(-.1rem)}.AppIntegrationsView__crashReportingSnippetsContainer___kx9fp{width:100%;height:25rem}.AppIntegrationsView__inlineCode___TC04j{margin:0 .5rem;padding:.1rem .5rem .3rem;font-family:LOGROCKET_SOURCE_CODE_PRO;background-color:#e6e6e6;background-color:var(--lightGray);color:#750507;color:var(--darkRed);font-size:1rem}.AppIntegrationsView__anyService___W0EjV{margin-bottom:1rem}.AppIntegrationsView__paddedSubtitle___VZlH_{margin-bottom:.5rem}.AppIntegrationsView__subTitleLink___ajLqx{margin-left:1rem;color:#926fca;color:var(--purple);text-decoration:underline;font-size:1rem;cursor:pointer;font-weight:400;padding:0 1rem;position:relative;bottom:1px}.AppIntegrationsView__libraryIntegrationsContainer___rUkD6{position:relative;height:30.5rem}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.OrgMembersView__h1___fhONk{font-size:2rem}.OrgMembersView__h1___fhONk,.OrgMembersView__h2___eQmxj{font-weight:700}.OrgMembersView__h2___eQmxj{font-size:1.5rem;line-height:2.7rem;text-align:center}.OrgMembersView__h3___crLKL{font-size:1.3rem}.OrgMembersView__h3___crLKL,.OrgMembersView__h4___eRf9q{font-weight:700;letter-spacing:.5px}.OrgMembersView__h4___eRf9q{font-size:1.1rem}.OrgMembersView__h5___DjYXY{font-size:.75rem}.OrgMembersView__h5___DjYXY,.OrgMembersView__smallCaps___zAfmy{text-transform:uppercase}.OrgMembersView__smallCaps___zAfmy{font-size:.8rem;font-weight:400;letter-spacing:.8px}.OrgMembersView__paragraph___IN_ya{font-size:1.1rem;font-weight:400;line-height:1.6rem}.OrgMembersView__bold___V17ri{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.OrgMembersView__paginationWrapper___O1H5c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:1rem}.OrgMembersView__expandLinkWrapper___sZprv{margin-left:.5rem}.OrgMembersView__requireSSOContainer___jY4Hv{margin-bottom:4rem}.OrgMembersView__requireSSOForm___MHphf{max-width:150px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.OrgMembersView__requireSSOLabel___tNy7A{margin-top:.5rem;font-weight:600;font-size:1.2rem}.OrgMembersView__container___C6wyc{padding:4rem;overflow-y:auto}.OrgMembersView__container___C6wyc,.OrgMembersView__innerContainer___Z5mxD{height:100%;position:relative}.OrgMembersView__innerContainer___Z5mxD{max-width:65rem}.OrgMembersView__title___zM3Qz{margin-bottom:2rem}.OrgMembersView__trash___UXPtU{cursor:pointer}.OrgMembersView__inviteButton___QKsZT{display:inline-block;margin-bottom:1rem}.OrgMembersView__inviteButtonContainer___l2l_Z{margin-bottom:2rem}.OrgMembersView__avatar___BQJfI{position:absolute;left:1rem;top:0;bottom:0;height:3rem;width:3rem;margin:auto}.OrgMembersView__avatar___BQJfI img{width:100%;height:100%;border-radius:5rem}.OrgMembersView__textContainer___EOURl{padding-left:6rem}.OrgMembersView__name___YOyZb{font-weight:500;font-weight:var(--medium);margin-bottom:.25rem}.OrgMembersView__removeUser___ZWYFk{position:absolute;right:1rem;top:.2rem;bottom:0;margin:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.OrgMembersView__timesButton___q72Vx{font-size:1.5rem;color:#9c9c9c;color:var(--gray)}.OrgMembersView__addInviteForm___LLbHd{margin-bottom:2rem;width:40rem}.OrgMembersView__selectLabel___QKjTh .Select-value-label{padding:1rem .2rem!important;line-height:3.8rem!important}.OrgMembersView__selectLabel___QKjTh .Select-control{height:3.6rem!important;line-height:normal!important;border:2px solid #e6e6e6!important;border:2px solid var(--lightGray)!important;font-size:1.1rem}.OrgMembersView__selectLabel___QKjTh .Select-input{height:auto!important;line-height:normal!important}.OrgMembersView__selectLabel___QKjTh .Select-menu-outer{display:none}.OrgMembersView__ssoDescription___OobHQ{margin:1rem 0;font-size:1.2rem;line-height:2rem}.OrgMembersView__tableContainer___skGUi{margin-top:2rem}.OrgMembersView__link___kDL5a{text-decoration:underline;color:#926fca;color:var(--purple);cursor:pointer}.OrgMembersView__authModalPassword___cH9zf{font-size:1.2rem;margin-bottom:1rem}.OrgMembersView__copyToClipboard____kY3U{color:#926fca;color:var(--purple);margin-left:2rem;cursor:pointer}.OrgMembersView__copyToClipboard____kY3U:hover{text-decoration:underline}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.OrgGDPRView__h1___hdaZ4{font-size:2rem}.OrgGDPRView__h1___hdaZ4,.OrgGDPRView__h2___cWeFx{font-weight:700}.OrgGDPRView__h2___cWeFx{font-size:1.5rem;line-height:2.7rem;text-align:center}.OrgGDPRView__h3___ZC_o5{font-size:1.3rem}.OrgGDPRView__h3___ZC_o5,.OrgGDPRView__h4___f0jxP{font-weight:700;letter-spacing:.5px}.OrgGDPRView__h4___f0jxP{font-size:1.1rem}.OrgGDPRView__h5___oaI27{font-size:.75rem}.OrgGDPRView__h5___oaI27,.OrgGDPRView__smallCaps___PIY0v{text-transform:uppercase}.OrgGDPRView__smallCaps___PIY0v{font-size:.8rem;font-weight:400;letter-spacing:.8px}.OrgGDPRView__paragraph___nCs8Q{font-size:1.1rem;font-weight:400;line-height:1.6rem}.OrgGDPRView__bold___CIYhp{font-weight:700}.OrgGDPRView__innerContainer___WVC8B{height:100%;position:relative;max-width:50rem}.OrgGDPRView__title___eCulc{margin-bottom:2rem}.OrgGDPRView__deleteUserDataDescription___kXH7Y{margin:1rem 0;font-size:1.2rem;line-height:2rem}
:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.table__table___p5h5l{margin:1rem 0;background-color:#fff;background-color:var(--white);width:100%}.table__table___p5h5l,.table__tableHeader___bIX9_{border:1px solid #f0f0f0;border:1px solid var(--veryLightGray)}.table__tableHeader___bIX9_{text-align:left;background-color:#f6f6f6;background-color:var(--veryVeryLightGray);font-weight:700}.table__tableCell___fkxHq,.table__tableHeader___bIX9_{padding:calc(1rem + 2px) 1rem 1rem}.table__tableCell___fkxHq{border-bottom:1px solid #f0f0f0;border-bottom:1px solid var(--veryLightGray)}.table__tableCellCentered___HKP2C{text-align:center}.table__tableLink___B4Pzo{color:purple;text-decoration:underline;cursor:pointer;font-size:1rem;font-weight:300}.table__tableCellRight___wxCJY{text-align:right}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.JIRACloudSettingsView__h1___Fs3ls{font-size:2rem}.JIRACloudSettingsView__h1___Fs3ls,.JIRACloudSettingsView__h2___EN3ox{font-weight:700}.JIRACloudSettingsView__h2___EN3ox{font-size:1.5rem;line-height:2.7rem;text-align:center}.JIRACloudSettingsView__h3___GhKIj{font-size:1.3rem}.JIRACloudSettingsView__h3___GhKIj,.JIRACloudSettingsView__h4___I_P7r{font-weight:700;letter-spacing:.5px}.JIRACloudSettingsView__h4___I_P7r{font-size:1.1rem}.JIRACloudSettingsView__h5___Vku1P{font-size:.75rem}.JIRACloudSettingsView__h5___Vku1P,.JIRACloudSettingsView__smallCaps___xjev4{text-transform:uppercase}.JIRACloudSettingsView__smallCaps___xjev4{font-size:.8rem;font-weight:400;letter-spacing:.8px}.JIRACloudSettingsView__paragraph___gsrYK{font-size:1.1rem;font-weight:400;line-height:1.6rem}.JIRACloudSettingsView__bold___dCQ3X{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.JIRACloudSettingsView__title___qU1uJ{margin-bottom:1.4rem;font-size:1.3rem;font-weight:500;font-weight:var(--medium);line-height:1.7rem}.JIRACloudSettingsView__greenCheck___A0WCb{color:#227831;color:var(--green);margin-left:.5rem}.JIRACloudSettingsView__link___lOOAB{text-decoration:underline;color:#926fca;color:var(--purple)}.JIRACloudSettingsView__shareButton___rrcQh{display:inline-block;height:1.8rem;margin-left:.5rem;margin-right:.5rem;-webkit-transform:translateY(.5rem);transform:translateY(.5rem)}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.LoadingView__h1___DlXIc{font-size:2rem}.LoadingView__h1___DlXIc,.LoadingView__h2____ziZo{font-weight:700}.LoadingView__h2____ziZo{font-size:1.5rem;line-height:2.7rem;text-align:center}.LoadingView__h3___rbgSH{font-size:1.3rem}.LoadingView__h3___rbgSH,.LoadingView__h4___JNZBV{font-weight:700;letter-spacing:.5px}.LoadingView__h4___JNZBV{font-size:1.1rem}.LoadingView__h5___CQxzm{font-size:.75rem}.LoadingView__h5___CQxzm,.LoadingView__smallCaps___xxnTv{text-transform:uppercase}.LoadingView__smallCaps___xxnTv{font-size:.8rem;font-weight:400;letter-spacing:.8px}.LoadingView__paragraph___WZeDP{font-size:1.1rem;font-weight:400;line-height:1.6rem}.LoadingView__bold___fO7nN{font-weight:700}.LoadingView__loading___LrkkY{font-size:1.2rem}.LoadingView__loading___LrkkY:after{overflow:hidden;display:inline-block;vertical-align:bottom;-webkit-animation:LoadingView__ellipsis___K8601 .9s steps(4) infinite;animation:LoadingView__ellipsis___K8601 .9s steps(4) infinite;content:"\2026";width:0}.LoadingView__loadingContainer___GQFOa{text-align:left;margin-top:4rem;font-weight:500;font-weight:var(--medium)}@-webkit-keyframes LoadingView__ellipsis___K8601{to{width:1.25em}}@keyframes LoadingView__ellipsis___K8601{to{width:1.25em}}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.GitHubSettingsView__h1___C3Ssj{font-size:2rem}.GitHubSettingsView__h1___C3Ssj,.GitHubSettingsView__h2___OI0uv{font-weight:700}.GitHubSettingsView__h2___OI0uv{font-size:1.5rem;line-height:2.7rem;text-align:center}.GitHubSettingsView__h3___gIVXP{font-size:1.3rem}.GitHubSettingsView__h3___gIVXP,.GitHubSettingsView__h4___k_1Kb{font-weight:700;letter-spacing:.5px}.GitHubSettingsView__h4___k_1Kb{font-size:1.1rem}.GitHubSettingsView__h5___R24O1{font-size:.75rem}.GitHubSettingsView__h5___R24O1,.GitHubSettingsView__smallCaps___bJCJy{text-transform:uppercase}.GitHubSettingsView__smallCaps___bJCJy{font-size:.8rem;font-weight:400;letter-spacing:.8px}.GitHubSettingsView__paragraph___ZVhUK{font-size:1.1rem;font-weight:400;line-height:1.6rem}.GitHubSettingsView__bold___cjRlt{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.GitHubSettingsView__title___J97_y{margin-bottom:1.4rem;font-size:1.2rem;font-weight:500;font-weight:var(--medium);line-height:1.7rem}.GitHubSettingsView__link___Nwk5E{text-decoration:underline;color:#926fca;color:var(--purple)}.GitHubSettingsView__orderedStep___NsSS0{margin-bottom:2rem}.GitHubSettingsView__greenCheck___MbF3A{color:#227831;color:var(--green);margin-left:.5rem}.GitHubSettingsView__description___C7IH8{font-size:1.1rem;margin:.5rem 0;color:#575757;color:var(--darkGray)}.GitHubSettingsView__step4___S1Nju{margin-top:3rem}.GitHubSettingsView__inputTitle___Jsyw0{margin-bottom:-1.5rem;font-size:1.1rem}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.TrelloSettingsView__h1___rujFz{font-size:2rem}.TrelloSettingsView__h1___rujFz,.TrelloSettingsView__h2___VDrZu{font-weight:700}.TrelloSettingsView__h2___VDrZu{font-size:1.5rem;line-height:2.7rem;text-align:center}.TrelloSettingsView__h3___iu_Ty{font-size:1.3rem}.TrelloSettingsView__h3___iu_Ty,.TrelloSettingsView__h4___KGNjv{font-weight:700;letter-spacing:.5px}.TrelloSettingsView__h4___KGNjv{font-size:1.1rem}.TrelloSettingsView__h5___jG8SJ{font-size:.75rem}.TrelloSettingsView__h5___jG8SJ,.TrelloSettingsView__smallCaps___fozS8{text-transform:uppercase}.TrelloSettingsView__smallCaps___fozS8{font-size:.8rem;font-weight:400;letter-spacing:.8px}.TrelloSettingsView__paragraph___Kwy5R{font-size:1.1rem;font-weight:400;line-height:1.6rem}.TrelloSettingsView__bold___PFqIJ{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.TrelloSettingsView__title___KCt7s{margin-bottom:1.4rem;font-size:1.2rem;line-height:1.7rem}.TrelloSettingsView__loadingContainer___MDeJD,.TrelloSettingsView__title___KCt7s{font-weight:500;font-weight:var(--medium)}.TrelloSettingsView__loadingContainer___MDeJD{text-align:left;margin-top:4rem}.TrelloSettingsView__loadingIndicatorContainer___jftPQ{margin:0 auto}.TrelloSettingsView__link___QXmgb{text-decoration:underline;color:#926fca;color:var(--purple)}.TrelloSettingsView__orderedStep___JcvoU{margin-bottom:2rem}.TrelloSettingsView__greenCheck___qQ5yd{color:#227831;color:var(--green);margin-left:.5rem}.TrelloSettingsView__description___HnACb{font-size:1.1rem;margin:.5rem 0;color:#575757;color:var(--darkGray)}.TrelloSettingsView__step4___ZEOk0{margin-top:3rem}.TrelloSettingsView__inputTitle___H153d{margin-bottom:-1.5rem;font-size:1.1rem}.TrelloSettingsView__loading___k14o7{font-size:1.2rem}.TrelloSettingsView__loading___k14o7:after{overflow:hidden;display:inline-block;vertical-align:bottom;-webkit-animation:TrelloSettingsView__ellipsis___X_gx5 .9s steps(4) infinite;animation:TrelloSettingsView__ellipsis___X_gx5 .9s steps(4) infinite;content:"\2026";width:0}@-webkit-keyframes TrelloSettingsView__ellipsis___X_gx5{to{width:1.25em}}@keyframes TrelloSettingsView__ellipsis___X_gx5{to{width:1.25em}}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.IntercomSettingsView__h1___TGnrK{font-size:2rem}.IntercomSettingsView__h1___TGnrK,.IntercomSettingsView__h2___PkUMZ{font-weight:700}.IntercomSettingsView__h2___PkUMZ{font-size:1.5rem;line-height:2.7rem;text-align:center}.IntercomSettingsView__h3___CjVvQ{font-size:1.3rem}.IntercomSettingsView__h3___CjVvQ,.IntercomSettingsView__h4___Oxuoe{font-weight:700;letter-spacing:.5px}.IntercomSettingsView__h4___Oxuoe{font-size:1.1rem}.IntercomSettingsView__h5___CxgH6{font-size:.75rem}.IntercomSettingsView__h5___CxgH6,.IntercomSettingsView__smallCaps___pPdvY{text-transform:uppercase}.IntercomSettingsView__smallCaps___pPdvY{font-size:.8rem;font-weight:400;letter-spacing:.8px}.IntercomSettingsView__paragraph___Z49wU{font-size:1.1rem;font-weight:400;line-height:1.6rem}.IntercomSettingsView__bold___cylyJ{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.IntercomSettingsView__title___zzTrE{margin-bottom:1.4rem;font-size:1.2rem;font-weight:500;font-weight:var(--medium);line-height:1.7rem}.IntercomSettingsView__intercomImage___WwNiI{width:100%;margin:1rem 0}.IntercomSettingsView__alternateText___UqblK{padding-top:1rem;line-height:1.5rem}.IntercomSettingsView__loadingContainer___F9U1l{text-align:left;margin-top:4rem;font-weight:500;font-weight:var(--medium)}.IntercomSettingsView__loadingIndicatorContainer___ZSdbT{margin:0 auto}.IntercomSettingsView__link___eY2Cw{text-decoration:underline;color:#926fca;color:var(--purple)}.IntercomSettingsView__orderedStep___STIAe{margin-bottom:2rem}.IntercomSettingsView__greenCheck___NJKcn{color:#227831;color:var(--green);margin-left:.5rem}.IntercomSettingsView__description___pgEZ2{font-size:1.1rem;margin:2rem 0;color:#575757;color:var(--darkGray)}.IntercomSettingsView__step4___gtH9R{margin-top:3rem}.IntercomSettingsView__inputTitle___Q4dIr{margin-bottom:-1.5rem;font-size:1.1rem}.IntercomSettingsView__loading___SWixK{font-size:1.2rem}.IntercomSettingsView__loading___SWixK:after{overflow:hidden;display:inline-block;vertical-align:bottom;-webkit-animation:IntercomSettingsView__ellipsis___nyfLx .9s steps(4) infinite;animation:IntercomSettingsView__ellipsis___nyfLx .9s steps(4) infinite;content:"\2026";width:0}@-webkit-keyframes IntercomSettingsView__ellipsis___nyfLx{to{width:1.25em}}@keyframes IntercomSettingsView__ellipsis___nyfLx{to{width:1.25em}}h2{font-size:1.6rem}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.ZendeskSettingsView__h1___Sm6gt{font-size:2rem}.ZendeskSettingsView__h1___Sm6gt,.ZendeskSettingsView__h2___F6hEv{font-weight:700}.ZendeskSettingsView__h2___F6hEv{font-size:1.5rem;line-height:2.7rem;text-align:center}.ZendeskSettingsView__h3___FSWzw{font-size:1.3rem}.ZendeskSettingsView__h3___FSWzw,.ZendeskSettingsView__h4___XGFjp{font-weight:700;letter-spacing:.5px}.ZendeskSettingsView__h4___XGFjp{font-size:1.1rem}.ZendeskSettingsView__h5___ov6FF{font-size:.75rem}.ZendeskSettingsView__h5___ov6FF,.ZendeskSettingsView__smallCaps___p5qQr{text-transform:uppercase}.ZendeskSettingsView__smallCaps___p5qQr{font-size:.8rem;font-weight:400;letter-spacing:.8px}.ZendeskSettingsView__paragraph___hTb6X{font-size:1.1rem;font-weight:400;line-height:1.6rem}.ZendeskSettingsView__bold___r25YP{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.ZendeskSettingsView__title___aWoNp{font-size:1.2rem;font-weight:500;font-weight:var(--medium);line-height:1.7rem}.ZendeskSettingsView__authorizeLinkIcon___Iw02d{margin-left:.5rem;margin-right:0!important}.ZendeskSettingsView__helpLink___EbAjy{color:#9c9c9c;color:var(--gray);float:right;font-size:1.2rem}.ZendeskSettingsView__helpLink___EbAjy:hover{color:#575757;color:var(--darkGray)}.ZendeskSettingsView__stepDescription___tPwN3{margin:1rem 0}.ZendeskSettingsView__alternateText___o6jAi{margin:2rem 0;line-height:1.5rem}.ZendeskSettingsView__link___p1_7z{text-decoration:underline;color:#926fca;color:var(--purple)}.ZendeskSettingsView__orderedStep___X9KEK{margin-bottom:2rem}.ZendeskSettingsView__greenCheck___E2zN8{color:#227831;color:var(--green);margin-left:.5rem}.ZendeskSettingsView__description___Q86yy{font-size:1.1rem;margin:2rem 0;color:#575757;color:var(--darkGray)}.ZendeskSettingsView__brandSelect___fGdab{margin:1rem 0}
:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.SlackSettingsView__testLink___Bf2Wp{font-size:1.1rem;text-decoration:underline;color:#926fca;color:var(--purple);cursor:pointer}.SlackSettingsView__submitWrap___Lfbak{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.SlackSettingsView__title___JF39I{margin-bottom:-1.5rem;font-size:1.2rem;font-weight:500;font-weight:var(--medium);line-height:1.7rem}.SlackSettingsView__link___zFs3q{text-decoration:underline;color:#926fca;color:var(--purple)}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.LinearSettingsView__h1___x6xMs{font-size:2rem}.LinearSettingsView__h1___x6xMs,.LinearSettingsView__h2___r8fK_{font-weight:700}.LinearSettingsView__h2___r8fK_{font-size:1.5rem;line-height:2.7rem;text-align:center}.LinearSettingsView__h3___g4COP{font-size:1.3rem}.LinearSettingsView__h3___g4COP,.LinearSettingsView__h4___u4qk3{font-weight:700;letter-spacing:.5px}.LinearSettingsView__h4___u4qk3{font-size:1.1rem}.LinearSettingsView__h5___bgPnL{font-size:.75rem}.LinearSettingsView__h5___bgPnL,.LinearSettingsView__smallCaps___j0M3m{text-transform:uppercase}.LinearSettingsView__smallCaps___j0M3m{font-size:.8rem;font-weight:400;letter-spacing:.8px}.LinearSettingsView__paragraph___ECWXd{font-size:1.1rem;font-weight:400;line-height:1.6rem}.LinearSettingsView__bold___hPKmo{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.LinearSettingsView__title___VRp_b{margin-bottom:1.4rem;font-size:1.2rem;font-weight:500;font-weight:var(--medium);line-height:1.7rem}.LinearSettingsView__greenCheck___uxfTf{color:#227831;color:var(--green);margin-left:.5rem}.LinearSettingsView__inputTitle___VMarI{margin-bottom:-1.5rem;font-size:1.1rem}.LinearSettingsView__link___uymzZ{text-decoration:underline;color:#926fca;color:var(--purple)}.LinearSettingsView__shareButton___Oek8B{display:inline-block;height:1.8rem;margin-left:.5rem;margin-right:.5rem;-webkit-transform:translateY(.5rem);transform:translateY(.5rem)}
@font-face{font-display:block;font-family:proxima-vara;src:url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2 supports variations"),url(/public/c0fe15c7ff4c58a5d2cd.woff2) format("woff2-variations");font-weight:300 900}button,input,label,select,textarea{font-family:proxima-vara,sans-serif}@font-face{font-display:block;font-family:LOGROCKET_OPEN_SANS;src:url(/public/3d5923f94fc319b5652a.ttf);font-weight:300}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:500}@font-face{font-display:block;font-family:LOGROCKET_SOURCE_CODE_PRO;src:url(/public/3b5adc929c114d1cd0fc.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/401bd636a7027c695b08.ttf);font-weight:700}@font-face{font-display:block;font-family:LOGROCKET_LATO;src:url(/public/79164ee524feb6583a94.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC;src:url(/public/d6e7c98f284c1b0a69ec.ttf);font-weight:400}@font-face{font-display:block;font-family:LOGROCKET_FREIGHT_SANS_SC_MD;src:url(/public/305ca17c426780116a3e.ttf);font-weight:700}.FivetranIntegrationSettingsView__h1___P2Opb{font-size:2rem}.FivetranIntegrationSettingsView__h1___P2Opb,.FivetranIntegrationSettingsView__h2___ynCmr{font-weight:700}.FivetranIntegrationSettingsView__h2___ynCmr{font-size:1.5rem;line-height:2.7rem;text-align:center}.FivetranIntegrationSettingsView__h3___pIwQK{font-size:1.3rem}.FivetranIntegrationSettingsView__h3___pIwQK,.FivetranIntegrationSettingsView__h4___vN3a0{font-weight:700;letter-spacing:.5px}.FivetranIntegrationSettingsView__h4___vN3a0{font-size:1.1rem}.FivetranIntegrationSettingsView__h5___EKZYb{font-size:.75rem}.FivetranIntegrationSettingsView__h5___EKZYb,.FivetranIntegrationSettingsView__smallCaps___PbuUx{text-transform:uppercase}.FivetranIntegrationSettingsView__smallCaps___PbuUx{font-size:.8rem;font-weight:400;letter-spacing:.8px}.FivetranIntegrationSettingsView__paragraph___iNGIl{font-size:1.1rem;font-weight:400;line-height:1.6rem}.FivetranIntegrationSettingsView__bold___slURl{font-weight:700}:root{--extraBold:800;--bold:700;--semibold:600;--medium:500;--regular:400;--light:300;--sidebarWidth:16rem;--sideBarSidePadding:0.7rem;--slideTransition:0.2s linear all;--smallSidebarWidth:4rem;--buttonWidth:30rem;--buttonHeight:3.9rem;--buttonBorderColor:var(--lightGray);--buttonBorderRadius:5px;--black:#111;--white:#fff;--darkWhite:#fcfcfc;--transparent:transparent;--blue:#0058a9;--linkBlue:#30c2ff;--darkBlue:#003769;--darkGray:#575757;--lightGray:#e6e6e6;--ultraLightGray:#f9f9f9;--veryVeryLightGray:#f6f6f6;--veryLightGray:#f0f0f0;--gray:#9c9c9c;--ultraDarkGray:#222224;--ligherThanUltraDarkgray:#2d2d2d;--veryDarkGray:#252525;--red:#96090d;--green:#227831;--purple:#926fca;--darkPurple:#764abc;--lightPurple:#926fca;--darkRed:#750507;--orangeRed:#ff3f01}.FivetranIntegrationSettingsView__title____OaN5{margin-bottom:1.4rem;font-size:1.2rem;font-weight:500;font-weight:var(--medium);line-height:1.7rem}.FivetranIntegrationSettingsView__alternateText___DYAmk{padding-top:1rem;line-height:1.5rem}.FivetranIntegrationSettingsView__loadingContainer___ZAAdG{text-align:left;margin-top:4rem;font-weight:500;font-weight:var(--medium)}.FivetranIntegrationSettingsView__loadingIndicatorContainer___XvYIw{margin:0 auto}.FivetranIntegrationSettingsView__link___HfHuj{text-decoration:underline;color:#926fca;color:var(--purple);font-size:1.2rem}.FivetranIntegrationSettingsView__orderedStep___YKiFY{margin-bottom:2rem}.FivetranIntegrationSettingsView__greenCheck___QC7tz{color:#227831;color:var(--green);margin-left:.5rem}.FivetranIntegrationSettingsView__description___hGJYI{font-size:1.1rem;margin:2rem 0;color:#575757;color:var(--darkGray)}.FivetranIntegrationSettingsView__step4____wm_R{margin-top:3rem}.FivetranIntegrationSettingsView__inputTitle___Tqkqg{margin-bottom:-1.5rem;font-size:1.1rem}.FivetranIntegrationSettingsView__loading___GlIkx{font-size:1.2rem}.FivetranIntegrationSettingsView__loading___GlIkx:after{overflow:hidden;display:inline-block;vertical-align:bottom;-webkit-animation:FivetranIntegrationSettingsView__ellipsis___hMBAD .9s steps(4) infinite;animation:FivetranIntegrationSettingsView__ellipsis___hMBAD .9s steps(4) infinite;content:"\2026";width:0}@-webkit-keyframes FivetranIntegrationSettingsView__ellipsis___hMBAD{to{width:1.25em}}@keyframes FivetranIntegrationSettingsView__ellipsis___hMBAD{to{width:1.25em}}h2{font-size:1.6rem}
.UserSettingsView__container___O5b_W{width:30rem}.UserSettingsView__avatar___eYrTg{margin:0 auto 1rem;display:block;width:6rem;border-radius:6rem}.UserSettingsView__changePassword___M8pN9{display:inline-block;cursor:pointer}.UserSettingsView__changePassword___M8pN9:hover{text-decoration:underline}
.NewAppView__container___p6djx{width:30rem}

/*# sourceMappingURL=main-ef39c7d523360b7ea39bfff0864577f9.js.map*/