@import url(https://res.leadoo.com/fonts/roboto.css);
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  display: block;
  width: 54px;
  height: 54px;
}
.spinner:after {
  content: " ";
  display: block;
  width: 38px;
  height: 38px;
  margin: 1px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-right-color: transparent;
  border-left-color: transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
.spinner.small {
  width: 40px;
  height: 40px;
}
.spinner.small:after {
  width: 24px;
  height: 24px;
  border-width: 5px;
}
.spinner.large {
  width: 70px;
  height: 70px;
}
.spinner.large:after {
  width: 54px;
  height: 54px;
  border-width: 8px;
}

.ld-launch {
  width: 100%;
  height: 100%;
}

#launch-btn {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #56a0d3;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#launch-btn.top {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
#launch-btn.bottom {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
#launch-btn.left {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
#launch-btn.right {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
#launch-btn.left, #launch-btn.right {
  display: block !important;
  position: relative;
}
#launch-btn.left {
  background: #56a0d3;
}
#launch-btn.right {
  background: #56a0d3;
}
#launch-btn .launch-text {
  color: #FFF;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  user-select: none;
  white-space: nowrap;
}
#launch-btn .launch-text.vertical {
  position: absolute;
  top: 40px;
  right: 75%;
  text-align: center;
  transform: rotate(-0.25turn);
  transform-origin: top right;
}

.ld-window {
  width: 100%;
  height: 100%;
}

#container {
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.161);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  max-height: calc(100vh - 20px);
}
#container .close-container {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
}
#container .close-container .close-icon {
  width: 16px;
  height: 16px;
  fill: #8cb6d2;
}
#container .close-container .close-icon svg {
  width: 100%;
  height: 100%;
}
#container button.close-container {
  background: none;
  border: none;
}

#body {
  background: #FFF;
  padding: 32px 16px 16px 16px;
  position: relative;
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: auto;
  scrollbar-color: rgba(206, 206, 206, 0.7) #FFF;
}
#body::-webkit-scrollbar {
  width: 8px;
}
#body::-webkit-scrollbar-track {
  background-color: #FFF;
}
#body::-webkit-scrollbar-thumb {
  background-color: rgba(206, 206, 206, 0.7);
  border-radius: 4px;
}
#body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(206, 206, 206, 0.95);
}
#body .cta-body {
  flex: 1 1 auto;
  width: 100%;
}
#body .close-container {
  position: absolute;
  top: 8px;
  right: 8px;
}

#container.with-header #body {
  padding-top: 16px;
}

#root.mobile #container {
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  max-height: 100vh;
}
#root.mobile #body {
  border-radius: 0px;
  padding: 40px;
}

.content-bar {
  flex: 0 0 auto;
  background: white;
  color: white;
  position: relative;
  padding: 0px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.content-bar.close-first {
  padding-left: 6px;
}
.content-bar.close-last {
  padding-right: 6px;
}
.content-bar .bar-text {
  font-weight: 600;
}
.content-bar .bar-img {
  user-select: none;
}
.content-bar .bar-img img {
  height: 100%;
  width: auto;
}
.content-bar.header {
  height: 27px;
}
.content-bar.header .bar-img {
  padding: 4px 0px;
  height: calc(100% - 8px);
}
.content-bar.header .bar-text {
  font-size: 10px;
  padding: 4px 0px;
  max-height: calc(100% - 8px);
}
.content-bar.footer {
  height: 27px;
}
.content-bar.footer .bar-img {
  padding: 4px 0px;
  height: calc(100% - 8px);
}
.content-bar.footer .bar-text {
  font-size: 12px;
  padding: 4px 0px;
  max-height: calc(100% - 8px);
}
.content-bar .close-container .close-icon {
  fill: #DEE6F4 !important;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.spinner:after {
  border-top-color: #56a0d3;
  border-bottom-color: #56a0d3;
}

.spinner.success:after {
  border-top-color: #56a0d3;
  border-bottom-color: #56a0d3;
}

.full-size {
  width: 100%;
  height: 100%;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.question:not(.visible) {
  display: none;
}

.custom-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.custom-form > .form-element:not(:last-child) {
  margin-bottom: 8px;
}
.custom-form .form-element .input-label {
  color: white;
  font-size: 12px;
  line-height: 16px;
}
.custom-form .text-input-container {
  position: relative;
}
.custom-form .text-input-container .input-wrapper {
  width: 100%;
  position: relative;
}
.custom-form .text-input-container:not(.multiline) .input-wrapper {
  height: 30px;
}
.custom-form .text-input-container.multiline .input-wrapper {
  height: 70px;
}
.custom-form .text-input-container .text-input {
  touch-action: manipulation;
  color: #303030;
  background: rgba(41, 91, 184, 0.07);
  border: 1px solid #bacdd9;
  border-radius: 5px;
  padding: 8px;
  line-height: 14px;
  width: 100%;
  position: relative;
}
.custom-form .text-input-container .text-input:focus {
  outline: none;
  border-color: #56a0d3;
}
.custom-form .text-input-container .text-input:disabled {
  color: #b7b7b7;
}
.custom-form .text-input-container .text-input::placeholder, .custom-form .text-input-container .text-input::-webkit-input-placeholder {
  color: #56a0d3;
  opacity: 1;
}
.custom-form .text-input-container .text-input.has-icon {
  padding-left: 24px;
}
.custom-form .text-input-container input.text-input {
  height: 30px;
}
.custom-form .text-input-container textarea.text-input {
  height: 70px;
  padding: 8px;
  scroll-padding: 10px;
  resize: none;
}
.custom-form .text-input-container .text-input-icon {
  position: absolute;
  left: 8px;
  top: 8px;
  fill: #838383;
  width: 14px;
  height: 14px;
  z-index: 2;
}
.custom-form .form-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.custom-form .form-footer .validation-error {
  margin-bottom: 8px;
}

.validation-error {
  color: #FF1E27;
  font-size: 10px;
  line-height: 18px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.validation-error .icon {
  display: inline-block;
  fill: #FF1E27;
  margin-left: 7px;
  width: 14px;
  height: 14px;
}

.submit-status {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.submit-status .submit-heading {
  font-size: 20px;
  margin-top: 4px;
}
.submit-status .submit-msg {
  margin-top: 3px;
  text-align: center;
}
.submit-status.sending {
  padding: 20px 0px;
}

.sent-icon {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #56a0d3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sent-icon > .icon {
  width: 22px;
  height: 22px;
}
.sent-icon > .icon svg {
  fill: #FFF;
  stroke: #FFF;
  stroke-width: 0.5px;
}

#root.mobile .submit-status {
  width: 100%;
  height: 100%;
  justify-content: center;
}

.heading {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #303030;
}

.sub-heading {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #56a0d3;
}

#root.mobile .heading {
  font-size: 20.02px;
}
#root.mobile .sub-heading {
  font-size: 17.16px;
}

.send-button {
  background: #56a0d3;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #FFF;
  font-size: 13.97px;
  font-weight: bold;
  padding: 7px;
}
.send-button:disabled {
  color: white;
  background: #d2dbe1;
}

#root.mobile .send-button {
  font-size: 21.9329px;
}

.radio-btn-cont {
  width: 14px;
  height: 14px;
  padding: 5px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
}
.radio-btn-cont .radio-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #CECECE;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
  background-color: transparent;
}
.radio-btn-cont .radio-inner-sel {
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #56a0d3;
  z-index: 1;
  position: absolute;
  left: calc(50% - 4px);
  top: calc(50% - 4px);
}
.radio-btn-cont .radio-inner-sel.checked {
  display: block;
}
.radio-btn-cont:focus {
  outline: none;
}
.radio-btn-cont:focus .radio-btn {
  border: 3px solid #56a0d3;
}
.radio-btn-cont:focus .radio-inner-sel {
  width: 6px;
  height: 6px;
  left: calc(50% - 3px);
  top: calc(50% - 3px);
}
.radio-btn-cont.hover:not(.disabled) .radio-btn {
  border-color: #56a0d3;
  box-shadow: 0px 0px 8px #56a0d3;
}
.radio-btn-cont.checked .radio-btn {
  border-color: #56a0d3;
}
.radio-btn-cont.disabled {
  cursor: not-allowed;
}
.radio-btn-cont.disabled .radio-button {
  border-color: #CECECE !important;
}
.radio-btn-cont.checkbox {
  width: 14px;
  height: 14px;
}
.radio-btn-cont.checkbox .radio-btn {
  width: 14px;
  height: 14px;
  border-radius: 0px;
}
.radio-btn-cont.checkbox.checked .radio-btn {
  background-color: #56a0d3;
}
.radio-btn-cont.checkbox .check-icon {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 3;
}
.radio-btn-cont.checkbox .check-icon.checked {
  display: flex;
}
.radio-btn-cont.checkbox .check-icon .icon {
  fill: #FFF;
  width: 12px;
  height: 12px;
}

.radio-w-label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.radio-w-label .radio-label {
  margin-left: 15px;
  text-align: left;
  color: black;
  font-size: 9.625px;
}
.radio-w-label.disabled .radio-label {
  color: #CECECE;
}

.radio-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.radio-group .group-label {
  font-size: 12px;
  color: #56a0d3;
}
.radio-group .validation-error {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 4px;
}
.radio-group .validation-error .icon {
  display: inline-block;
  fill: #FF1E27;
  margin-left: 7px;
  width: 14px;
  height: 14px;
}

.dropdown-container {
  position: relative;
}
.dropdown-container .icon.dropdown-arrow {
  position: absolute;
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  right: 10px;
  fill: #bacdd9;
  pointer-events: none;
}
.dropdown-container select:focus + .dropdown-arrow {
  fill: #56a0d3;
}

select.dropdown-selector {
  position: relative;
  height: 30px;
  width: 100%;
  font-size: 11px;
  background: rgba(41, 91, 184, 0.07);
  cursor: pointer;
  color: #303030;
  border: 1px solid #bacdd9;
  border-radius: 5px;
  padding: 6px 46px 6px 6px;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select.dropdown-selector::-ms-expand {
  display: none;
}
select.dropdown-selector:focus {
  outline: none;
  border-color: #56a0d3;
}
select.dropdown-selector option:first-child {
  color: #56a0d3;
}

.powered-by {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  cursor: pointer;
  padding: 4px;
}
.powered-by img.logo {
  width: 89px;
  height: 11px;
}

#root.mobile img.logo {
  width: 112px;
  height: 16px;
}

.disclaimer {
  margin: 0 auto;
  max-width: 120px;
  width: 100%;
  text-align: center;
  color: #0A2440;
  margin-top: 6px;
  right: 0px;
  opacity: 1;
  height: 24px;
  overflow: hidden;
}
.disclaimer:not(.visible) {
  height: 0px;
  margin-top: 0px;
  opacity: 0;
}
.disclaimer.animated {
  transition-timing-function: linear;
  transition-property: opacity, height, margin-top;
  transition-duration: 0.8s, 0.2s, 0.2s;
  transition-delay: 0s, 0.6s, 0.6s;
}
.disclaimer:not(.animated) {
  visibility: hidden;
}

.disclaimer {
  font-family: "Roboto";
  font-size: 8px;
}

.link, .link:visited, .link:active {
  color: #56a0d3;
}

body {
  background-color: transparent;
}

a, a:visited {
  text-decoration: none;
}

html, body, input, select, option, textarea, button, label {
  font-family: "Roboto";
  font-size: 11px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

#root {
  display: block !important;
}