/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}


/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
/* START: Form CTA */
.hs_submit.hs-submit {
  width: max-content;
  position: relative;
  display: inline-block;
  z-index: 1;
}
/* END: Form CTA */

.cloud-cta a:hover,
.cloud-cta a:active, 
.cloud-cta a:focus {
  font-weight: 700;
  color: #fff;
}
.cloud-cta a:after,
.cloud-cta a:before,
.hs_submit.hs-submit:after,
.hs_submit.hs-submit:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}

form .hs-button, 
form input[type=submit] {
  padding: 0;
  border: 0;
  background: transparent;

  letter-spacing: .5px;
  font-size: 14px;
  line-height: 19px;
  font-weight: bold;
  color: #fff;
}

.cloud-cta a,
form .actions {
  font-size: 14px;
  line-height: 19px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding: 30px 38.5px;
  text-transform: uppercase;
  letter-spacing: .5px;

  position: relative;
  z-index: 1;

  animation: padding_out .4s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  
  background-color: transparent;
  border: 0;
}
.cloud-cta a:hover,
form .hs_submit.hs-submit:hover .actions {
  animation: padding_in .4s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes padding_in {
  0% {
    padding: 30px 38.5px;
  }
  33.33% {
    padding: 20px 35.5px 40px 23px;
  }
  66.66% {
    padding: 17px 38px 43px 22px;
  }
  100% { 
    padding: 20px 35.5px 40px 23px;
  }
}
@keyframes padding_out {
  0% {
    padding: 20px 35.5px 40px 23px;
  }
  33.33% {
    padding: 30px 38.5px;
  }
  50% {
    padding: 32px 36.5px 28px 40.5px;
  }
  100% { 
    padding: 30px 38.5px;
  }
}

.cloud-cta a:after,
.hs_submit.hs-submit:after {
  background-color: #CB9D2A;
  border-radius: 5px;
  right: -7px;
  bottom: -7px;
  width: 10%;
  height: 10%;
  opacity: 0;

  animation: overlay_out .2s ease;

  transition: opacity .2s ease;
  -webkit-transition: opacity .2s ease;
  -moz-transition: opacity .2s ease;
}
.cloud-cta a:hover:after,
.hs_submit.hs-submit:hover:after {
  opacity: 1;

  animation: overlay_in .4s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes overlay_in {
  0% {
    right: -7px;
    bottom: -7px;
    width: 10%;
    height: 10%;
  }
  33.33% {
    bottom: 7px;
    right: 7px;
    width: 100%;
    height: 100%;
  }
  66.66% {
    bottom: 9px;
    right: 9px;
    width: 102%;
    height: 102%;
  }
  100% { 
    bottom: 7px;
    right: 7px;
    width: 100%;
    height: 100%;
  }
}
@keyframes overlay_out {
  0% {
    bottom: 7px;
    right: 7px;
    width: 100%;
    height: 100%;
  }
  100% { 
    right: -17px;
    bottom: -17px;
    width: 10%;
    height: 10%;
  }
}

.cloud-cta a:before,
.hs_submit.hs-submit:before {
  background-color: #254a9a;
  border-radius: 5px 50px 5px 5px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: border-radius .1s ease;
  -webkit-transition: border-radius .1s ease;
  -moz-transition: border-radius .1s ease;

  animation: width_out .4s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
} 
.cloud-cta a:hover:before,
.hs_submit.hs-submit:hover:before {
  animation: width_in .4s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  border-radius: 5px;
}
@keyframes width_in {
  0% {
    width: 100%;
  }
  50% {
    width: 106%;
  }
  100% { 
    width: 100%;
  }
}
@keyframes width_out {
  0% {
    width: 100%;
  }
  50% {
    width: 99%;
  }
  100% { 
    width: 100%;
  }
}

.cloud-cta span img,
.hs_submit.hs-submit span img {
  margin-left: 7px;
  opacity: 0;
  position: absolute;

  transition: opacity .1s ease;
  -webkit-transition: opacity .1s ease;
  -moz-transition: opacity .1s ease;

  display: inline-block;
}
.cloud-cta a:hover span img,
.cloud-cta--light a:hover span img,
.hs_submit.hs-submit:hover span img {
  opacity: 1;
  position: unset;
}
img.cloud-cta__arc {
  bottom: 0;
  position: absolute;
  right: 0;
  transform: scale(1);
  transition: opacity .2s ease;
  -webkit-transition: opacity .2s ease;
  -moz-transition: opacity .2s ease;
  opacity: 1;

  animation-name: arc_scale_out;
  animation-duration: .4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.cloud-cta a:hover img.cloud-cta__arc,
.hs_submit.hs-submit:hover img.cloud-cta__arc {
  opacity: 0;

  animation-name: arc_scale_in;
  animation-duration: .7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes arc_scale_in {
  0% {
    bottom: 0;
    right: 0;
    transform: scale(1);
  }
  100% { 
    bottom: 22px;
    right: 74px;
    transform: scaleX(5) scaleY(2.4);
  }
}
@keyframes arc_scale_out {
  0% {
    bottom: 22px;
    opacity: 0;
    right: 74px;
    transform: scaleX(5) scaleY(2.4);
  }
  33.33% {
    bottom: 0;
    right: 0;
    transform: scale(1);
  }
  66.66% {
    transform: scale(1.2);
    bottom: 2px;
    right: 4px;
  }
  100% { 
    bottom: 0;
    right: 0;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .cloud-cta {
    text-align: center;
  }
}

.cloud-cta--light a {
  color: #254A9A;
}
.cloud-cta--light a:before {
  background-color: #ffffff;
}

/* START: Circle CTA */
.cloud-cta--circle a {
  height: 148px;
  width: 148px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 45px 35px 23px rgb(0 0 0 / 1%), 26px 20px 19px rgb(0 0 0 / 5%), 11px 9px 14px rgb(0 0 0 / 9%), 3px 2px 8px rgb(0 0 0 / 10%), 0px 0px 0px rgb(0 0 0 / 10%);
  display: block;

  font-size: 14px;
  font-weight: 700 !important;
  line-height: 19px;
  color: #254A9A;
  text-transform: uppercase;

  animation-name: cloud-cta--circle__out;
  animation-duration: .2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  position: relative;
}
.cloud-cta--circle a:before,
.cloud-cta--circle a:after,
.cloud-cta--circle a span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;

  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
}
.cloud-cta--circle a:before,
.cloud-cta--circle a:after {
  content: "";
  display: block;
}
.cloud-cta--circle a:before {
  border: 6px solid #CB9D2A;
  height: 87px;
  width: 87px;
  border-radius: 50%;

  animation-name: cloud-cta--circle__inner-out;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.cloud-cta--circle a:after {
  background: url(https://4241863.fs1.hubspotusercontent-na1.net/hubfs/4241863/Cloudeteer%20Theme/circle-button-icon.svg);
  height: 50px;
  width: 50px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 1;
}
.cloud-cta--circle a span {
  opacity: 0;
  z-index: 2;
  padding-right: 0;
}
.cloud-cta--circle a:hover {
  animation-name: cloud-cta--circle__in;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.cloud-cta--circle a:hover:after {
  opacity: 0;
}
.cloud-cta--circle a:hover:before {
  width: 100%;
  height: 100%;
  border: 11px solid #cb9d2a;

  animation-name: cloud-cta--circle__inner-in;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.cloud-cta--circle a:hover span {
  opacity: 1;
  padding-right: 23px;
}

@keyframes cloud-cta--circle__in {
  0% {
    height: 148px;
    width: 148px;
  }
  50% {
    height: 162px;
    width: 162px;
  }
  100% {
    width: 158px;
    height: 158px;
  }
}
@keyframes cloud-cta--circle__out {
  0% {
    width: 158px;
    height: 158px;
  }
  100% {
    height: 148px;
    width: 148px;
  }
}
@keyframes cloud-cta--circle__inner-in {
  0% {
    height: 87px;
    width: 87px;
  }
  50% {
    height: 102%;
    width: 102%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes cloud-cta--circle__inner-out {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    height: 80px;
    width: 80px;
  }
  100% {
    height: 87px;
    width: 87px;
  }
}

.cloud-cta--circle img {
  width: 16px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}
/* END: Circle CTA */

/* START: Slider Buttons */
.slick-slider-buttons {
  position: relative;
}
.slick-slider-buttons button {
  word-wrap: normal;
  background-color: #fff !important;
  border: 1px solid #254a9a;
  color: transparent;
  height: 42px;
  padding: 0;
  width: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
} 
.slick-slider-buttons button.slick-next.slick-arrow {
  border-radius: 5px 20px 5px 5px;
  right: 0;
}
.slick-slider-buttons button.slick-prev.slick-arrow {
  border-radius: 20px 5px 5px 5px;
  left: 0;
}
.slick-slider-buttons button.slick-prev.slick-arrow:after,
.slick-slider-buttons button.slick-next.slick-arrow:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  background-image: url(https://4241863.fs1.hubspotusercontent-na1.net/hubfs/4241863/Cloudeteer%20Theme/slider-arrow.svg);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slick-slider-buttons button.slick-next.slick-arrow:after {
  transform: translate(-50%,-50%) rotate(-180deg);
}

.slick-slider-buttons--transparent button {
  background-color: transparent !important;
  border: 1px solid #ffffff;
  
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}
.slick-slider-buttons--transparent button.slick-prev.slick-arrow:after,
.slick-slider-buttons--transparent button.slick-next.slick-arrow:after {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
}
.slick-slider-buttons.slick-slider-buttons--transparent button:hover {
  border-color: #CB9D2A !important;
  border-radius: 5px;
  background-color: #CB9D2A !important;
}

.slick-slider-buttons.slick-slider-buttons--transparent button:focus {
  border-color: #ffffff;
}

/* END: Slider Buttons */

/* START: Floating CTA */
.cloud-floating-cta a,
.cloud-floating-cta p {
  display: inline-block;
  background-color: #fff;
  padding: 20px 18px;
  border-radius: 50px;
  font-size: 14px;
  line-height: 19.07px;
  color: #000;
  letter-spacing: .5px;
  border: 1px solid #CB9D2a;
}
.cloud-floating-cta a:hover {
  color: #000;
}

@media (max-width: 768px) {
  .cloud-floating-cta,
  .cloud-floating-cta p {
    text-align: center;
  }
}
/* END: Floating CTA */

/* START: Touch Indication CTA */
.cloud-cta--touch {
  display: block;
  position: absolute;
  top: 35px;
  right: 35px;
  background-color: #fff;
  z-index: 1;
}
.cloud-cta--touch p {
  margin: 0;
  padding: 17.5px 20.5px;
}
.cloud-cta--touch {
  border-radius: 50px;
  border: 1px solid #CB9D2A;
  box-shadow: 45px 35px 23px rgb(0 0 0 / 1%), 26px 20px 19px rgb(0 0 0 / 5%), 11px 9px 14px rgb(0 0 0 / 9%), 3px 2px 8px rgb(0 0 0 / 10%), 0px 0px 0px rgb(0 0 0 / 10%);
}
@media (min-width: 768px) {
  .cloud-cta--touch {
    display: none;
  }
}
/* END: Touch Indication CTA */

/* START: Object Move */
.object-move {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
/* END: Object Move */
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form input[type=tel] {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}
form input[type=text],
form input[type=email],
form textarea,
form input[type=tel] {
  background-color: #fff;
  border: 1px solid #d1d6dc !important;
  border-radius: 5px 50px 5px 5px !important;
  height: 77px;
  padding: 20px;
}
form textarea {
  resize: vertical;
  width: 100%;
  height: 150px;
  font-size: .875rem;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
  border: 0 !important;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Tickbox */
form li.hs-form-booleancheckbox {
  text-align: left;
}
form li.hs-form-booleancheckbox input {
  height: 32px;
  margin-right: 17px;
  width: 32px;
  z-index: 3;
  position: relative;
  opacity: 0;
}
form li.hs-form-booleancheckbox label {
  position: relative;
}
form li.hs-form-booleancheckbox label span:before {
  border: 1px solid #d1d6dc;
  border-radius: 4px;
  content: "";
  display: block;
  height: 32px;
  left: 0;
  position: absolute;
  top: 0;
  width: 32px;
  z-index: 1;
}
form li.hs-form-booleancheckbox label span:after {
  content: url(https://4241863.fs1.hubspotusercontent-na1.net/hubfs/4241863/Cloudeteer%20Theme/tickbox-icon.svg);
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 4px;
  top: 3px;
  z-index: 1;
  opacity: 0;
}
form li.hs-form-booleancheckbox input:checked + span:after {
  opacity: 1;
}
form li.hs-form-booleancheckbox input:checked + span:before {
  border: 1px solid #000;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/



/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* ================================
   HubSpot Embedded Form Overrides
   ================================ */

.custom-hs-form input[type="text"],
.custom-hs-form input[type="email"],
.custom-hs-form textarea {
  height: 40px !important;
  padding: 6px 8px !important;
  max-height: none !important;
}

@media (max-width: 600px) {
  .custom-hs-form input[type="text"] {
    width: 100% !important;
    height: auto !important;
  }
}