/* 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;
}
img{
  max-width:100%;
}
/*! 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)
*/

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control the layout of elements
and how they stack. This is based off of the bootstrap system.
*********************************************************************************
****************************************************************************** */

/* container */

.page-center,
.content-wrapper ,
.dnd-section > .row-fluid {
  margin-right:auto;
  margin-left:auto;
  width:100%;
}

/* Responsive Grid */

.row-fluid {
  width: 100%;
  *zoom: 1;
}

.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  *margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 100%;
}

.row-fluid .span11 {
  width: 91.66%;
}

.row-fluid .span10 {
  width: 83.33%;
}

.row-fluid .span9 {
  width: 75%;
}

.row-fluid .span8 {
  width: 66.66%;
}

.row-fluid .span7 {
  width: 58.33%;
}

.row-fluid .span6 {
  width: 50%;
}

.row-fluid .span5 {
  width: 41.66%;
}

.row-fluid .span4 {
  width: 33.33%;
}

.row-fluid .span3 {
  width: 25%;
}

.row-fluid .span2 {
  width: 16.66%;
}

.row-fluid .span1 {
  width: 8.33%;
}

/*  */


.flex_row .col12 {
  width: 100%;
}

.flex_row .col11 {
  width: 91.66%;
}

.flex_row .col10 {
  width: 83.33%;
}

.flex_row .col9 {
  width: 75%;
}

.flex_row .col8 {
  width: 66.66%;
}

.flex_row .col7 {
  width: 58.33%;
}

.flex_row .col6 {
  width: 50%;
}

.flex_row .col5 {
  width: 41.66%;
}

.flex_row .col4 {
  width: 33.33%;
}

.flex_row .col3 {
  width: 25%;
}

.flex_row .col20 {
  width: 20%;
}

.flex_row .col2 {
  width: 16.66%;
}

.flex_row .col1 {
  width: 8.33%;
}


.container-fluid {
  *zoom: 1;
}

.container-fluid:before,
.container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .flex_row .col20,
  .flex_row .col12,
  .flex_row .col11,
  .flex_row .col10,
  .flex_row .col9,
  .flex_row .col8,
  .flex_row .col7,
  .flex_row .col6,
  .flex_row .col5,
  .flex_row .col4,
  .flex_row .col3,
  .flex_row .col2,
  .flex_row .col1 {
    width: 100%;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
    width: 100%;
  }

  .dnd-section>.row-fluid .dnd-column,
  .dnd-section>.row-fluid>[class*="span"].dnd-module {
    padding: 0 10px;

  }
}

.dnd-section[class*="force-full-width-section"]>.row-fluid>.dnd-column.span12,
.dnd-section[class*="force-full-width-section"]>.row-fluid>.span12.dnd-module {
  padding: 0;
}

@media (min-width: 768px) {

  .dnd-section>.row-fluid .dnd-column,
  .dnd-section>.row-fluid>[class*="span"].dnd-module {
    padding: 0 10px;
  }

  .row-fluid {
    width: 100%;
    *zoom: 1;
  }

  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.66%;
  }

  .row-fluid .span10 {
    width: 83.33%;
  }

  .row-fluid .span9 {
    width: 75%;
  }

  .row-fluid .span8 {
    width: 66.66%;
  }

  .row-fluid .span7 {
    width: 58.33%;
  }

  .row-fluid .span6 {
    width: 50%;
  }

  .row-fluid .span5 {
    width: 41.66%;
  }

  .row-fluid .span4 {
    width: 33.33%;
  }

  .row-fluid .span3 {
    width: 25%;
  }

  .row-fluid .span2 {
    width: 16.66%;
  }

  .row-fluid .span1 {
    width: 8.33%;
  }
}

@media (max-width: 767px) {
  .row-fluid [class*=span] {
    min-height: 0;
  }
}

.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}
.page-center,
.content-wrapper ,
.dnd-section > .row-fluid {
  max-width: 100%;
  margin-right:auto;
  margin-left:auto;
}


.content-wrapper,
.page-center {
  margin: 0 auto;
  padding: 0 20px;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 10px;
}

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

@font-face {
  font-family: 'Seravek';
  src: url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Regular/Seravek.eot);
  src: url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Regular/Seravek.eot) format('embedded-opentype'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Regular/Seravek.woff2) format('woff2'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Regular/Seravek.woff) format('woff'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Regular/Seravek.ttf) format('truetype'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Regular/Seravek.svg) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Seravek';
  src: url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Bold/Seravek-Bold.eot);
  src: url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Bold/Seravek-Bold.eot) format('embedded-opentype'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Bold/Seravek-Bold.woff2) format('woff2'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Bold/Seravek-Bold.woff) format('woff'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Bold/Seravek-Bold.ttf) format('truetype'),
    url(https://45091779.fs1.hubspotusercontent-na1.net/hubfs/45091779/raw_assets/public/Purple%20Playground%20Member%20Portal/fonts/Seravek-Bold/Seravek-Bold.svg) format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


.full-video{position:absolute; top:0; width:100%; height:100%; left:0;z-index:-1;}
.full-video video,.full-video iframe{width:100%; height:100%; object-fit:cover;}
.common-popinner{max-width:65rem; position:relative; margin:0 auto; background-color:var(--white_color); padding:40px;}

.dis-flex{display:flex;flex-wrap:wrap;}
.vmiddle{align-items:center;}
.vbottom{align-items:flex-end;}
.hcenter{justify-content:center;}
.hright{justify-content:flex-end;}
.sbetween{justify-content:space-between}
.tc{text-align:center;}
.tr{text-align:right;}
.bg{background-size:cover; background-position:center; background-repeat:no-repeat;}

:focus,:focus-visible { outline: 0; }
a { color :inherit ; text-decoration: none;  cursor: pointer; outline: none; transition: all 0.3s ease ; -moz-transition: all 0.3s ease ; -ms-transition: all 0.3s ease ; -o-transition: all 0.3s ease ; -webkit-transition: all 0.3s ease ; }
a.cta_button {-moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box;}
button:focus-visible{outline:0; border:none;}
img { border: 0 none; max-width: 100%; vertical-align:middle;height:auto; }

.detail-content p,.detail-content ul,.detail-content ol,.detail-content blockquote,.hs_cos_wrapper_type_rich_text p,.hs_cos_wrapper_type_rich_text ul,.hs_cos_wrapper_type_rich_text ol,.hs_cos_wrapper_type_rich_text blockquote{ margin-bottom:24px; }
.detail-content > :last-child,.hs_cos_wrapper_type_rich_text > :last-child{ margin-bottom:0; }
.detail-content ul,.hs_cos_wrapper_type_rich_text ul{ padding-left: 0; list-style: none; }
.detail-content blockquote,.hs_cos_wrapper_type_rich_text blockquote{ font-weight: 700; font-style: italic; }
.detail-content ul li,.hs_cos_wrapper_type_rich_text ul li{ position: relative; margin-top:20px; padding-left:25px; }
.detail-content ul li:before,.hs_cos_wrapper_type_rich_text ul li:before{ border-radius: 50%; content: "."; font-size: 60px; left: 0; line-height: 0; margin-right: 10px; position: absolute; top: -5px;}
.detail-content.font20 ul li:before,.font20 .detail-content ul li:before,.font20 .hs_cos_wrapper_type_rich_text ul li:before { top: 6px; }
.detail-content ol,.hs_cos_wrapper_type_rich_text ol { padding-left: 20px; }
.detail-content ol li,.hs_cos_wrapper_type_rich_text ol li{ position: relative; margin-top:20px; padding-left:15px; }
.detail-content strong,.hs_cos_wrapper_type_rich_text strong{ font-weight:700; }


.rtp{padding-top:0 !important;}
.rbp{padding-bottom:0 !important;}

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  letter-spacing:-0.06px;
}

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: 19px;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6 {
  margin: 0 0 1.4rem;
  line-height:110.00000000000001%;
}
h1,.h1{
  letter-spacing:-2.58px;
  margin-bottom:16px;
}
h2,.h2{
  letter-spacing:-1.78px;
}
h3,.h3{
  letter-spacing:-0.22px;
}
h4,.h4{
  letter-spacing:0.08px;
}
h5,.h5{
  letter-spacing:1.49px;
  text-transform: uppercase;
}
h6,.h6{
  letter-spacing:-0.16px;
  text-transform: uppercase;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  display: inline-block;
  padding-left: 27px;

}

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

ul.no-list{
  list-style: none;
  margin: 0;
  padding-left: 0;
}
ul.no-list a{text-decoration:none;}
/* 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;
}

@media (max-width:767px){
  body{
    letter-spacing: -0.06px
  }
  h1,.h1{
    letter-spacing:-1.22px;
  }
  h2,.h2{
    letter-spacing:-1.02px;
  }
  h3,.h3{
    letter-spacing:-0.19px;
  }
  h4,.h4{
    letter-spacing:0.07px;
  }
  h5,.h5{
    letter-spacing:1.18px;
  }
  h6,.h6{
    letter-spacing:-0.14px;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 15px;
}
.hs_error_rollup{display:none;}
/* Labels */

form label {
  display: block;
  margin-bottom:8px;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  padding:15.5px 16px; 
  width: 100% !important;
  background-color:var(--secondary_colors);
  border:1px solid var(--primary_color);
line-height:normal;
}

form .hs_submit input{border:none;}

form textarea {
  resize: vertical;
}
form input[type=submit] {
    width: 100%;
}

input::-webkit-input-placeholder { color:#6F7482;} /* WebKit browsers */
input:-moz-placeholder {color:#6F7482;} /* Mozilla Firefox 4 to 18 */
input::-moz-placeholder {color:#6F7482;} /* Mozilla Firefox 19+ */
input:-ms-input-placeholder {color:#6F7482;} /* Internet Explorer 10+ */
textarea::-webkit-input-placeholder {color:#6F7482;} /* WebKit browsers */
textarea:-moz-placeholder { color:#6F7482;} /* Mozilla Firefox 4 to 18 */
textarea::-moz-placeholder {color:#6F7482;} /* Mozilla Firefox 19+ */
textarea:-ms-input-placeholder {color:#6F7482;} /* Internet Explorer 10+ */

/******** ============================= Form CSS===============================================================*/
  form ul{padding:0;}
  form ul li{list-style:none;position:unset;padding: 0;    margin: 0 0 12px;font-size:16px;line-height:normal;}
  form ul li:after {display:none;}
  form span.hs-form-required{display:none;}
/******************************************** Fieldset CSS*******************************************************/
  form fieldset{max-width:100%;}
  form fieldset.form-columns-1>div.hs-form-field .hs-input{width:100%;}
  form fieldset.form-columns-3 > div.hs-form-field{margin-right:0.95%;}
  form fieldset.form-columns-3 > div.hs-form-field:last-child{margin:0;}

/******************************************** Select CSS*******************************************************/
  form select {color:#6F7482; -moz-appearance: none;-webkit-appearance: none;background-color:var(--secondary_colors);background-image: url("https://20315204.fs1.hubspotusercontent-na1.net/hubfs/20315204/Arrow%20Down%20%282%29.svg");background-position:center right 16px;background-repeat: no-repeat;background-size:16px auto}

/******************************************** Radio Button CSS*******************************************************/
  form .input ul.inputs-list li label input[type="radio"]:checked+span:before {background: #1B1B1B ;background-size: 14px; background-position: center center;border-radius:50%;box-shadow:0 0 0 4px var(--secondary_colors) inset;  }
  form .input ul.inputs-list li label input[type="radio"] { opacity: 0; display:none !important;}
  form .input ul.inputs-list li label input[type="radio"]+span:before { margin-top: -3px; content: ''; background: var(--secondary_colors); display: inline-block;vertical-align: middle; width: 30px;height: 30px; padding: 2px; margin-right: 10px; text-align: center; border:1px solid var(--primary_color);border-radius:50%;}
form .input ul.inputs-list li label input[type="radio"]+span{cursor:pointer;}
/******************************************** Check Box CSS*******************************************************/
  form .input ul.inputs-list li label input[type="checkbox"]:checked+span:before {background: #1B1B1B url('https://20315204.fs1.hubspotusercontent-na1.net/hubfs/20315204/Tick%20%281%29.svg');background-size: 14px; background-position: center center;background-repeat:no-repeat;}
  form .input ul.inputs-list li label input[type="checkbox"] { opacity: 0; display:none !important;}
  form .input ul.inputs-list li label input[type="checkbox"]+span:before {  margin-top: -3px;content: ''; background: var(--secondary_colors); display: inline-block;vertical-align: middle; width:30px;height: 30px; padding: 2px; margin-right: 10px;border-radius:3px; text-align: center; border:1px solid var(--primary_color);}
form .input ul.inputs-list li label input[type="checkbox"]+span{cursor:pointer;}
/******************************************** Button CSS*******************************************************/

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: 1rem 0;
}
form .inputs-list.hs-error-msgs li{margin: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: var(--secondary_colors);
}

.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: var(--secondary_colors);
}

/* Inputs - file picker */

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

/* 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;
}

@media(max-width:767px){
  form fieldset.form-columns-2 > div.hs-form-field{margin-right:0 !important;width:100% !important;}
}

  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: var(--secondary_colors);
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* 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
*/


/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* 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;
  }
}
html{overflow-y:overlay;overflow:auto;-webkit-tap-highlight-color:transparent}
.bg,.bg_color{position:absolute;z-index:-1;width:100%;height:100%;top:0;bottom:0;left:0;right:0;pointer-events:none}
.bg_image{position:absolute;z-index:-2;width:100%;height:100%;top:0;bottom:0;left:0;right:0;pointer-events:none}
.text_center{text-align:center}
.text_right{text-align:right}
.text_left{text-align:left}
.text_center .btn_row{justify-content:center}
.text_right .btn_row{justify-content:flex-end}
.text_left .btn_row{justify-content:flex-start}
.flex_row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;row-gap:30px}
[class*=full-width-section].dnd-section,[class*=full-width-section].dnd-section>.row-fluid{padding:0}
.btn_row:empty{margin:0!important}
.btn_row{margin:20px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;row-gap:10px;-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px;justify-content:center;align-items:center}
.dnd_padd{position:relative;overflow:hidden}
.col20_row .flex_row,.col3_row .flex_row,.col4_row .flex_row{justify-content:center}
.btm_margin{margin-bottom:40px}
span.btn_icon {
  margin-left: 5px;
}
span.btn_icon svg {
  vertical-align: middle;
}
.btn_row a.hs-sec-btn,
.btn_row a.hs-button {
  background-image: none !important;
}
.btn_row a.hs-sec-btn:after, .btn_row a.hs-button:after {
  display: none;
}
@media(max-width:1300px) and (min-width:1101px){
  .col20_row .flex_row .col20{width:25%}
}
@media(max-width:1100px) and (min-width:992px){
  .col20_row .flex_row .col20,.col3_row .flex_row .col3{width:33.33%}
}
@media(max-width:991px) and (min-width:768px){
  .col20_row .flex_row .col20,.col2_row .flex_row .col2,.col3_row .flex_row .col3,.col4_row .flex_row .col4{width:50%}
}
table{border-collapse:collapse;border:none}
a.cta_button{box-sizing:border-box!important}