.form-wrapper{
   font-weight: 300;
   font-size: 16px;
   color: #273c55;
   line-height: 1.4;
   max-width:1128px;
   margin: 0 auto;
   padding: 35px 0;
}
.form-header{
   background: #fff;
   border: 1px solid #e5e5e5;
   margin-bottom: 40px;
   padding: 20px;
}
.form-header-new{
   padding-bottom: 20px;
}
.form-wrapper h2, .form-wrapper p, .form-wrapper ul{
   margin: 0;
}
/* .form-wrapper h1{
   font-weight: 400;
   font-size: 22px;
   color: #1b2432;
   margin: 0 auto 10px;
} */
.form-wrapper h1:after {
    background: #e6e6e6;
    height: 1px;
    width: 100%;
    content: " ";
    display: block;
    margin: 25px 0;
}
.form-wrapper h2.page-name{
   color: #273c55;
   font-weight: 600;
   font-size: 18px;
}
.form-wrapper .stepcount p{
   font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
}
.form-top{
   border-bottom: 1px solid #e5e5e5;
   padding: 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.form-pages{
   background: #fff;
   border: 1px solid #e5e5e5;
   max-width: 780px;
   margin: 0 auto;
}
.form-fields{
   padding: 30px;
}
@media (max-width: 768px){
    .form-fields{
      padding: 20px;
   }
}
/***** STEP DOTS ****/
.form-top .step-dot-container{
   display: inline-block;
   width: 20px;
}
.form-top .step-dot-container .step-dot{
   position: relative;
   display: inline-block;
   width: 10px;
   height: 10px;
   font-size: 10px;
   font-weight: bold;
   color: #fff;
   border-radius: 50%;
   background: #acb2bf;
}
.form-top .step-dot-container.active .step-dot{
   /* background: rgba(40,160,85,0.5); */
   background: #273c55;
}
.form-top .step-dot-container.active .step-dot:before{
   content: '';
   border-radius: 50%;
   position: absolute;
   top: calc(50% - 5px);
   left: calc(50% - 5px);
   width: 10px;
   height: 10px;
   background: rgba(39,60,85,0.5);
   /* background: rgba(40,160,85,0.5); */
   -webkit-animation-name: step-animation;
   animation-name: step-animation;
   -webkit-animation-duration: 2000ms;
   animation-duration: 2000ms;
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
}
.form-top .step-dot-container.complete .step-dot{
    background: #273c55;
}
@-webkit-keyframes step-animation{
   0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
   70%,to{-webkit-transform:scale(3.5);transform:scale(3.5);opacity:0}
}
@keyframes step-animation{
   0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
   70%,to{-webkit-transform:scale(3.5);transform:scale(3.5);opacity:0}
}
i.fa.fa-angle-right {
  padding-left: 3px;
  font-size: 17px;
}
.page-nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e5e5;
  padding: 20px;
}
.pagenav{
   /* font-family: inherit; */
   font-weight: 600;
   font-size: 16px;
   letter-spacing: -.2px;
}
.prev-btn{
  color: gray;
  transition: 300ms;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  text-decoration: none;
}
.prev-btn:hover{
  color: #273c55;
}
.next-btn, .submit-btn{
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: 0 0 #c4141c;
  border: 1px solid #c4141c;
  color: #fff;
  font-size: 16px;
  height: auto;
  line-height: 20px;
  padding: 9px 30px;
  min-width: 100px;
  border-radius: 0px;
  display: inline-block;
  margin: auto;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
   margin-right: 0px;
   margin-left: auto;
}
.next-btn:hover, .submit-btn:hover{
    background-color: transparent;
    border-color: #c4141c;
   color: #c4141c;
}
.field{
   display: inline-block;
   padding-left: 5px;
   padding-right: 5px;
   padding-bottom: 30px;
   vertical-align: top;
   position: relative;
   width: 49.5%;
}
.form-page{
  display: none;
  position: relative;
}
.form-page[data-pagenum="1"]{
  display: block;
}
.options-list{
  list-style: none;
  padding-left: 0px;
}
.options-list.checkbox-list{
  padding-left: 30px;
}
.options-list li{
 margin-top: 16px; 
}
input[type="checkbox"]+label {
	cursor: pointer;
	position: relative;
	margin-right: 60px;
	display: inline-block;
	padding-right: 10px;
}
input[type="checkbox"] {
	position: absolute;
	left: -9999px;
}
/* the checkbox
-----------------------------------------------*/
input[type="checkbox"]+label::after {
   content: '';
   font-family: 'FontAwesome';
   background-image: url('https://f.hubspotusercontent30.net/hubfs/6825031/Canva%20images/checked%20(2).png');
   border: 2px solid rgba(0,0,0,0.54);
   border-radius: 2px;
   background-color: white;
   position: absolute;
   top: 50%;
   left: -10px;
   transform: translate(-20px, -50%);
   box-sizing: border-box;
   width: 20px;
   height: 20px;
   color: #fff;
   transition: background-color 1s, border-color 1s;
   background-size: cover;
   background-position: center;
}

/* the checkbox -- checked
-----------------------------------------------*/
input[type="checkbox"]:checked+label::after {
   /* content: '\f00c'; */
   content: '';
   font-family: 'FontAwesome';
   border: 2px solid #273c55;
   background-color: #273c55;
}

/* the focus ripple
-----------------------------------------------*/
input[type="checkbox"]+label::before{
    content: '';
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .1);
    position: absolute;
    box-sizing: border-box;
    top: calc(50% - 5px);
    left: -24px;
    transform: translate(-50%, -50%) scale(0);
    width: 1.8px;
    height: 1.8px;
}
/* input[type="radio"]+label::before{
    content: '';
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .1);
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(0);
    width: 1.8px;
    height: 1.8px;
} */
input[type="checkbox"]:focus+label::before{
	animation: ripple 1s ease-out;
}
/*** RADIO *****/
.radio-list{
  display: flex;
  flex-direction: column;
}
.radio {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px #e5e5e5;
  box-shadow: 0 0 0 1px #e5e5e5;
  -webkit-transition: -webkit-box-shadow ease .3s;
  -o-transition: box-shadow ease .3s;
  transition: box-shadow ease .3s;
  transition: box-shadow ease .3s,-webkit-box-shadow ease .3s;
  display: inline-block;
  position: relative;
  margin: 0;
}
.radio.radiocheck{
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);  
}
.radio__input {
  position: absolute;
  top: 4px;
  left: 0;
  width: 36px;
  height: 20px;
  opacity: 0;
  z-index: 0;
}
.radio__label {
  display: block;
  padding: 0 0 0 32px;
  cursor: pointer;
}
.radio__label:before {
  content: '';
  position: absolute;
  top: calc(50% - 10px);
  left: 10px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.54);
  border-radius: 14px;
  z-index: 1;
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.radio__label:after {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: 15px;
  width: 10px;
  height: 10px;
  background-color: #273c55;
  border-radius: 50%;
  z-index: 2;
  transform: scale(0, 0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.radio__input:checked + .radio__label:before {
  border-color: #273c55;
}
.radio__input:checked + .radio__label:after {
  transform: scale(1, 1);
}
/**** TEXT INPUT *****/
.form-page .field input[type="text"], 
.form-page .field textarea,
.form-page .field input[type="email"],
.form-page .field select{
   font-size: 16px!important;
   box-shadow: none;
   outline: 0;
   background: 0 0;
   display: block;
   /* font-family: inherit; */
   color: #333!important;
   font-family: 'Lato', sans-serif!important;;
   font-weight: 400!important;
}
.form-page .field textarea{
   padding: 10px;
   width: calc(100% - 22px);
   border: 1px solid #e5e5e5;
   resize: vertical;
   margin-top: 10px;
   height: 120px;
}
.form-page .field input[type="text"],
.form-page .field input[type="email"],
.form-page .field select{
   border: 1px solid #e5e5e5;
   padding: 0 15px;
   width: 300px;
   line-height: 40px;
   height: 40px;
   border-radius: 4px;
   box-sizing: border-box;
   margin-left: 0;
   margin-right: 0;
   /* font-family: inherit; */
   color: #333;
}
.form-page .field select{
    z-index: 2;
    position: relative;
}
::-webkit-input-placeholder{
   color: rgb(117, 117, 117)!important;}
::-moz-placeholder{
   color: rgb(117, 117, 117)!important;}
:-ms-input-placeholder{
   color: rgb(117, 117, 117)!important;}
:-moz-placeholder{
   color: rgb(117, 117, 117)!important;}
.form-field:first-child .field input[type="text"]{
   margin-top: 30px;
}
label.text-input-label,
label.select-lab{
   display: block;
   padding-bottom: 10px;
   font-weight: 400;
}
.line-title {
   position: relative;
   margin-bottom: 20px;
}
.line-title:before {
   content: '';
   position: absolute;
   width: 100%;
   height: 1px;
   background: #1b2432;
   top: 50%;
   z-index: 1;
   display: none;
}
.line-title span {
   color: #273c55;
   position: relative;
   z-index: 2;
   padding-right: 10px;
}
.mbot{
   display: block;
   margin-bottom: 0px;
}
.error-msg{
   height: auto;
   max-height: 0px;
   visibility: hidden;
   opacity: 0;
  /* background: #f4f6f7;
   padding: 3px 10px 4px;
   max-width: fit-content;
   border: 2px solid red;
   border-radius: 3px;*/
}
.error-msg span{
   color: red;
   font-size: .875rem;
   display: none;
}
.show-err .error-msg{
   margin-top: 10px;
   visibility: visible;
   max-height: 100px;
   opacity: 1;
   margin-bottom: 15px;
}
.show-err .error-msg span{
   display: block;   
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}
.form-pages.full-width-inputs .form-page .field input[type="text"],
.form-pages.full-width-inputs .form-page .field input[type="email"],
.form-pages.full-width-inputs .form-page .field select,
.form-pages.full-width-inputs .form-page .field .sel-wrap{
   width: 100%!important;
}
.conditional-field{
   display: none;
}

.inline-thanks-wrapper{
   height: 100%;
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}
.step-dots-new{
   display: flex;
}
.step-dots-new .step-dot-container-new{
      padding: 0px 3px;
   position: relative;
}
.step-dots-new .step-dot-container-new .step-dot-new{
       display: flex;
    align-items: center;
    justify-content: center;
   position: relative;
    line-height: 1;
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 0px;
    background: #e5e5e5;
   overflow: hidden;
    font-weight: bold;
    color: white;
    text-align: center;   
}

.step-dots-new .step-dot-container-new.complete .step-dot-new{
    background: #273c55;
   font-size: 11px;
}
.step-dots-new .step-dot-container-new.active .step-dot-new {
   background: rgba(40,160,85,0.7);
}
{# .step-dots-new .step-dot-container-new:not(:first-child) .step-dot-new:before {
    content: '';
    background: #e5e5e5;
    height: 3px;
    width: 10px;
    top: 9px;
    position: absolute;
    right: 100%;
    left: -10px;
}
.step-dots-new .step-dot-container-new.active .step-dot-new:before{
   /* background-color: #273c55; */
 background: rgba(40,160,85,0.7);
}
.step-dots-new .step-dot-container-new.complete .step-dot-new:before{
    background: #273c55;
} #}


.step-dots-new .step-dot-container-new .step-dot-new .ripple {
   position: absolute;
   height: 80px;
   width: 80px;
   border-radius: 50%;
   background: rgb(52,159,78);
   background: radial-gradient(circle, rgba(52,159,78,0.1) 0%, rgba(52,159,78,0.5) 100%);
   background-position: center;
   max-width: 0px;
   max-height: 0px;
}
.higher{
   position: relative;
   z-index: 99999;
}
.step-dots-new .step-dot-container-new.active .step-dot-new .ripple{
   animation: stepAn 4s infinite;
   opacity: 1;
}


@keyframes stepAn{
   0%{ max-width: 0; max-height: 0; background: radial-gradient(circle, rgba(52,159,78,0) 0%, rgba(52,159,78,0.9) 100%); }
   20%{ max-width: 25px; max-height: 25px; background: radial-gradient(circle, rgba(52,159,78,0) 0%, rgba(52,159,78,0.7) 100%); }
   40%{ max-width: 50px; max-height: 50px; background: radial-gradient(circle, rgba(52,159,78,0) 0%, rgba(52,159,78,0.5) 100%); }
   60%{ max-width: 75px; max-height: 75px; background: radial-gradient(circle, rgba(52,159,78,0) 0%, rgba(52,159,78,0.3) 100%); }
   61%{ max-width: 0px; max-height: 0px; }
   100%{ max-width: 0px; max-height: 0px; }
}


/* Make the element pulse (grow large and small slowly) */
/* Usage
    .myElement {
        animation: pulsate 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 1; 
    }
*/
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

/* Make the element's opacity pulse*/
/* Usage
    .myElement {
        animation: opacityPulse 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 0; 
    }
*/
@-webkit-keyframes opacityPulse {
    0% {opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {opacity: 0.0;}
}

/* Make the element's background pulse. I call this alertPulse because it is red. You can call it something more generic. */
/* Usage
    .myElement {
        animation: alertPulse 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 1; 
    }
*/
@-webkit-keyframes alertPulse {
    0% {background-color: #9A2727; opacity: 1;}
    50% {opacity: red; opacity: 0.75; }
    100% {opacity: #9A2727; opacity: 1;}
}


/* Make the element rotate infinitely. */
/* 
Usage
    .myElement {
        animation: rotating 3s linear infinite;
    }
*/
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.select-arrow{
   display: none;
}

/* Overrides */
body input[type="text"], body input[type="password"], body input[type="datetime"], body input[type="datetime-local"], body input[type="date"], body input[type="month"], body input[type="time"], body input[type="week"], body input[type="number"], body input[type="email"], body input[type="url"], body input[type="search"], body input[type="tel"], body input[type="color"], body input[type="file"], body textarea, body select{
   margin-bottom: 0px!important;
}



.mbot{
   font-weight:300;
   font-size: 15px;
   margin-top: 1px;
   display: block;
   color: #333;
}
.line-title span{
   display: block;
   text-transform: none;
   font-weight: 400;
   font-size: 16px;
   font-family: 'Lato', sans-serif;
   color: #273c55;
   line-height: 1.4;
   -webkit-font-smoothing: antialiased;
}
.line-title {
    position: relative;
    margin-bottom: 0px;
}

.sel-wrap{
   padding-right: 5px;
   position: relative;
   width: 300px;
}
.field input:-internal-autofill-selected,
.field select:-internal-autofill-selected{
    background-color: transparent !important;
}



#invoiceTable{
   max-width:100%; 
   width: 100%; 
   margin-left: auto; 
   margin-right: auto;
   height: 100%;
   display: flex;
   padding: 35px;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

#invoiceTable > div:nth-child(3) tbody > tr:first-child{
   background-color: rgba(238,238,238,0.3);
}
#invoiceTable > div:nth-child(4) tbody > tr > td:first-child{
   background-color: rgba(238,238,238,0.3);
   font-weight: bold;
}

#invoiceTable > .inv-header{
   width: 100%;
   text-align: left;
   padding-bottom: 25px;   
}
body .hs-form-field > label {
    color: #273c55;
    font-family: 'Lato', sans-serif;
    line-height: 1.4;
    font-size: 16px!important;
    font-weight: 400!important;
    letter-spacing: 0.1px!important;
}

body input[type="file"]{
   font-size: 15px!important;   
}

.btm-info{
   width: 100%;
   text-align: left;
   margin-top: 25px;
}

.above-message{
   padding-bottom: 35px;
   text-align: left;
   width: 100%;
   font-size: 24px;
}
.above-message p{
   text-align: left;   
}


#totalbox{
   width: fit-content;
   padding: 10px 10px 12px;
   position: fixed;
   bottom: 35px;
   right: 35px;
   background-color: #273c55;
   z-index: 99999;
   display: none;
}
#totalbox p{
   margin: 0;
   color: #fff;
   font-weight: bold;
   line-height: 1;
}
#totalbox p.faweight{
   color: #fff;
   font-size: 11px;
   line-height: 1;
   margin-top: 5px;
   margin-bottom: 0px;
   font-weight: normal;
}

@media (min-width: 768px) {
  .field {
    width: 49.5% !important;
  }
}

.form-page:last-child .field {
  width: 100% !important;
}

/* 
fieldset:not(:nth-last-of-type(2)){
  display: none;
} */

.form-creator .hs-form fieldset {
  border: 0 !important;
  padding: 0;
}

.body-container input[type="submit"] {
  background: #c4141c !important;
  color: #fff !important;
}


@media (min-width: 768px) {
  .form-page[data-pagenum="7"] .field {
    width: 32.5% !important;
  }
}

.form-page .field input[type="text"], .form-page .field input[type="email"], .form-page .field select {
  width: 100% !important;
}

.pl-thank-you {
  font-size: 32px;
  padding: 30px;
  text-align: center;
}










