/* phpcs:ignore */

/*
Theme Name: Wilio
Theme URI: http://www.ansonika.com/wilio/
Author: Ansonika
Author URI: http://themeforest.net/user/Ansonika/

[Table of contents]

1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Buttons
- 1.3 Structure

2. CONTENT
- 2.1 Wizard
- 2.2 Success submit
- 2.3 Inner pages

3. COMMON
- 3.1 Misc
- 3.2 Spacing

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/

/*--------
html,
body {
  height: 100%;
}
----*/

footer .col {
    flex-basis: auto !important;
    flex-grow: 1;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tb5-connects-container ::-moz-selection {
  color: #fff;
  background: #4adffb;
}
.tb5-connects-container select option:first-child, select:invalid {
  color: green !important;
}

.tb5-connects-container ::selection {
  color: #fff;
  background: #4adffb;
}

.tb5-connects-container {
    background: white;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #333;
}
.tb5-connects-container {
  font-size: 16px;
  line-height: 24px;

}

.tb5-connects-container label {
  font-size: 15px;
}

.tb5-connects-container h1,
.tb5-connects-container h2,
.tb5-connects-container h3,
.tb5-connects-container h4,
.tb5-connects-container h5,
.tb5-connects-container h6 {
  color: #000;
  font-weight: 700;
  letter-spacing: 0;
}
.tb5-connects-container h3 {
  font-size: 23px;
    line-height: 1.3;

}
.tb5-connects-container h1.wizard-header {
  border-bottom: 2px solid #ededed;
  padding-bottom: 17px;
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
.tb5-connects-container .p-relative {
  position: relative;
}
.tb5-connects-container .pb-100 {
  padding-bottom: 100px;
}
.tb5-connects-container .mr-2 {
  margin-right: 2% !important;
}
.tb5-connects-container .w-34 {
  width: 34% !important;
}
.tb5-connects-container .ml-30 {
  margin-left: 30% !important;
}
.tb5-connects-container .form-inline label.container_radio {
  color: #6c757d;
  width: auto;
  margin: 0;
  padding-right: 2%;
  font-weight: normal;
  text-transform: none;
}
.tb5-connects-container label.container_radio:active, label.container_radio:hover {
  color: #333;
}
.tb5-connects-container p {
  margin-bottom: 25px;
}

.tb5-connects-container strong {
  font-weight: 500;
}

.tb5-connects-container label {
  font-weight: 400;
  margin-bottom: 3px;
  color: #222222;
}

.tb5-connects-container hr {
  margin: 30px 0 30px 0;
  border-color: #dddddd;
}

.tb5-connects-container ul, .tb5-connects-container ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

/*General links color*/
.tb5-connects-container a {
  color: #45009d;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}
.tb5-connects-container a:hover, a:focus {
  color: #111;
  text-decoration: none;
  outline: none;
}

.tb5-connects-container a.animated_link {
  position: relative;
  text-decoration: none;
}

.tb5-connects-container a.animated_link {
  position: relative;
  text-decoration: none;
}
.tb5-connects-container a.animated_link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  opacity: 1;
  left: 0;
  background-color: #45009d;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tb5-connects-container a.animated_link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.tb5-connects-container a.animated_link.active {
  position: relative;
  text-decoration: none;
  color: #45009d;
}
.tb5-connects-container a.animated_link.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  opacity: 1;
  left: 0;
  background-color: #45009d;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*-------- 1.2 Buttons --------*/
.tb5-connects-container a.btn_1,
.tb5-connects-container .btn_1 {
  border: none;
  color: #333;
  background: #FFDB1A;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 20px 30px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-size: 20px;
  font-size: 18px;
}
.tb5-connects-container a.btn_1:hover,
.tb5-connects-container .btn_1:hover {
  background-color: #eac300;
}
.tb5-connects-container a.btn_1.full-width,
.tb5-connects-container .btn_1.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
.tb5-connects-container a.btn_1.small,
.tb5-connects-container .btn_1.small {
  padding: 7px 10px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.tb5-connects-container a.btn_1.medium,
.tb5-connects-container .btn_1.medium {
  font-size: 16px;
  font-size: 1rem;
  padding: 18px 30px;
}
.tb5-connects-container a.btn_1.rounded,
.tb5-connects-container .btn_1.rounded {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.tb5-connects-container .inner-page a.btn_1.rounded,
.tb5-connects-container .inner-page .btn_1.rounded {
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -ms-border-radius: 2px !important;
  border-radius: 2px !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-weight: 300;
    border: 1px solid #f3cf0e;
    border-style: none;
    border-width: 0;
    background-clip: padding-box;
    background: #ffdb1a;
    color: #333333;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    display: inline-block;
    font-size: 16px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    transition: 0.15s ease-out color;
}

.tb5-connects-container input.btn_1.rounded:hover {
  text-decoration: none;
  background-color: #deb700;
  cursor: pointer;
}

.tb5-connects-container ::placeholder {
  color: #333 !important;
  opacity: .5 !important; /* Firefox */
}

.tb5-connects-container :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #333 !important;
  opacity: .5 !important; /* Firefox */
}

.tb5-connects-container ::-ms-input-placeholder { /* Microsoft Edge */
  color: #333 !important;
  opacity: .5 !important; /* Firefox */
}

/*-------- 1.3 Structure --------*/
/* Preloader */
.tb5-connects-container #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

.tb5-connects-container [data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #333;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

.tb5-connects-container #loader_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 999999;
  display: none;
}

.tb5-connects-container [data-loader="circle-side-2"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #333;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tb5-connects-container .row-height {
  min-height: 100vh;
}
.tb5-connects-container .row-height.inner-page {
  min-height: 100vh;
  display: block;
}
@media (max-width: 991px) {
  .row-height {
    height: auto;
  }
}

.tb5-connects-container .content-top {
  background-color: #45009d;
  padding: 0;
}

.tb5-connects-container .content-front {
  max-width: 430px;
  text-align: left;
  z-index: 2;
}
.tb5-connects-container .content-top-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 100%;
  padding:60px 40px 120px 40px;
  background-color: #45009d;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;

}
.tb5-connects-container.front .content-top-wrapper {
  display: flex;
  justify-content: left;
  background-color: #fbfbfb;
  color: #333333;
  padding:120px 40px 120px 40px;
}


.tb5-connects-container .bg-light {
  background-color: #fbfbfb !important;
}
.tb5-connects-container .col-image {
    background-color: #fbfbfb;
    background-image: url(https://tb5tb.org/wp-content/uploads/2019/04/02_c.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: scroll;
    background-size: cover;
}
.tb5-connects-container .inner-page .content-top-wrapper {
  display: block;
  overflow: hidden;
}
@media (min-width: 991px) {
 /* .content-top-wrapper:before {
      content: '';
      position: absolute;
      width: 50%;
      height: 100%;
      background: #3e0094;
      top: 0;
      right: -15%;
      z-index: 0;
      transform: skew(-20deg);
  }*/
  }
@media (max-width: 991px) {
  .tb5-connects-container .content-top-wrapper {
    height: auto;
  }
	.tb5-connects-container .col-image {
		display:none;
	}
	.tb5-connects-container .col-6{

	}
}
@media (max-width: 767px) {
  .tb5-connects-container .content-top-wrapper {
  }
	.tb5-connects-container .form-control {
    width: 100% !important;
    margin-left: 0 !important;
	margin-right: 0 !important;
    margin-bottom: 2%;
	}
	.tb5-connects-container .form-inline .w-70 {
    	width: 100% !important;
	}
}

.tb5-connects-container .content-top-wrapper figure img {
  height: 155px;
}



.tb5-connects-container .content-top-wrapper h2 {
  color: #fff;
  color: #333;
  font-size: 32px;
  font-size: 2rem;
  margin: 20px 0 15px 0;
  font-weight: 400;
  font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
}
.tb5-connects-container .content-top-wrapper h2.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .tb5-connects-container .content-top-wrapper h2 {
    font-size: 26px
  }
}
.tb5-connects-container .content-top-wrapper p {
  font-size: 15px;
  font-size: 0.9375rem;
  opacity: 0.8;
}
.tb5-connects-container .content-top-wrapper p.lead {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .tb5-connects-container .content-top-wrapper p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.tb5-connects-container .content-top-wrapper .btn_1 {
  margin: 25px 0 0;
}
@media (max-width: 991px) {
  .tb5-connects-container .content-top-wrapper .btn_1 {

  }
}
.tb5-connects-container .content-top-wrapper .btn_1.mobile_btn {
  display: none;
}
@media (max-width: 767px) {
  .tb5-connects-container .content-top-wrapper .btn_1.mobile_btn {
    margin: 5px 0 30px 0;
    display: inline-block;
  }
}
.tb5-connects-container .step-number {
  position: absolute;
  right: 60px;
  font-size: 20px;
  color: #999;
  top: 44px;
}


.tb5-connects-container .content-bottom {
    padding: 30px 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: -90px !important;
    background-color: #fff;
    max-width: 860px;
    z-index: 2;
    border-radius: 24px 24px 0 0;
}
.tb5-connects-container .inner-page .content-bottom {
    display: block;
}
@media (max-width: 991px) {
  .tb5-connects-container .content-bottom {
    height: auto;
  }
}




.tb5-connects-container .copy {
  position: absolute;
  bottom: 25px;
  opacity: 0.5;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .tb5-connects-container .copy {
    display: none;
  }
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Wizard --------*/
.tb5-connects-container #left_form {
  text-align: center;
}
.tb5-connects-container #left_form h2 {
  font-size: 28px;
  font-size: 1.75rem;
  color: #0686D8;
}
@media (max-width: 767px) {
  .tb5-connects-container #left_form figure img {
    height: 130px;
    width: auto;
  }
}

.tb5-connects-container input#website {
  display: none;
}

.tb5-connects-container #wizard_container {
  width: 100%;
}
@media (max-width: 767px) {
  .tb5-connects-container #wizard_container {
    width: 100%;
  }
}


.tb5-connects-container h2.subtitle {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 10px;
    padding: 0;
    font-weight: 700;
}
.tb5-connects-container .question {
  border-top: 2px solid #eee;
  padding-top: 30px;
  margin-bottom: 30px !important;
}
.tb5-connects-container .form-group.form-range {
  width: 50%;
}
.tb5-connects-container .question:first-child {
    border: none;
    padding: 0;
}
.tb5-connects-container h3.main_question {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 20px;
}
.tb5-connects-container h3.main_question strong {
  display: block;
  color: #999;
  margin-bottom: 5px;
}
.tb5-connects-container .form-inline label {
  width: 30%;
  text-align: left;
  justify-content: left;
  text-transform: uppercase;
  font-weight: 700;
}
.tb5-connects-container .form-inline .form-group {
  width: 100%;
}
.tb5-connects-container .form-inline .w-70 {
  width: 70%;
}

/* Wizard Buttons*/
.tb5-connects-container button.backward,
.tb5-connects-container button.forward,
.tb5-connects-container button.submit {
  border: none;
  color: #fff;
  text-decoration: none;
  transition: background .5s ease;
  -moz-transition: background .5s ease;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-align: center;
  background: #45009d;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  padding: 12px 30px;
}

.tb5-connects-container button.backward {
  color: #777;
  background: #e8e8e8;
}

.tb5-connects-container button[disabled] {
  display: none;
}

.tb5-connects-container button.submit:before {
  content: "\4e";
  font-family: 'ElegantIcons';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  font-size: 1.125rem;
}

.tb5-connects-container .backward:hover,
.tb5-connects-container .forward:hover {
  background: #d80075;
  color: #fff;
}

.tb5-connects-container #top-wizard {
  padding-bottom: 0;
}

.tb5-connects-container #middle-wizard {
  min-height: 330px;
}
@media (max-width: 991px) {
  .tb5-connects-container #middle-wizard {
    min-height: inherit;
  }
}

.tb5-connects-container #bottom-wizard {
  border-top: 2px solid #ededed;
  padding-top: 40px;
  text-align: right;
}

.tb5-connects-container .ui-widget-content {
  background-color: transparent;
}

.tb5-connects-container .ui-widget-content a {
  color: #222222;
}

.tb5-connects-container .ui-widget-header {
  background: #6C3;
}

.tb5-connects-container .ui-widget-header a {
  color: #222222;
}

.tb5-connects-container .summary ul {
  margin: 0;
  padding: 0;
}
.tb5-connects-container .summary ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ededed;
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
}
.tb5-connects-container .summary ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.tb5-connects-container .summary ul li strong {
  display: block;
  line-height: 26px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  border: 2px solid #ddd;
}
.tb5-connects-container .summary ul li h5 {
  padding-top: 6px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0686D8;
}
.tb5-connects-container .summary ul li ul {
  margin: 20px 0 25px 0;
  padding: 0;
}
.tb5-connects-container .summary ul li ul li {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.tb5-connects-container .summary label {
  font-weight: 500;
}

/*-------- 2.2 Success submit --------*/
.tb5-connects-container #success {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 190px;
  margin-top: -85px;
  margin-left: -150px;
  text-align: center;
}
.tb5-connects-container #success h4 {
  font-weight: 400;
  margin: 20px 0 0 0;
  font-size: 18px;
  font-size: 1.125rem;
}
.tb5-connects-container #success h4 span {
  display: block;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
}

@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-ms-keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }

  100% {
    stroke-dashoffset: 480px;
  }
}

@-ms-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }

  100% {
    stroke-dashoffset: 480px;
  }
}

@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }

  100% {
    stroke-dashoffset: 480px;
  }
}

.tb5-connects-container .inlinesvg .svg svg {
  display: inline;
}

.tb5-connects-container .icon--order-success svg path {
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.tb5-connects-container .icon--order-success svg circle {
  -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
  animation: checkmark-circle 0.6s ease-in-out backwards;
}

/*-------- 2.3 Inner pages --------*/


.tb5-connects-container .main_title {
  text-align: center;
}
.tb5-connects-container .main_title h2 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 42px;
  font-size: 2.625rem;
  color: #45009d;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .tb5-connects-container .main_title h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tb5-connects-container .main_title h2 em {
  display: block;
  width: 40px;
  height: 4px;
  background-color: #ededed;
  margin: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.tb5-connects-container .main_title p {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0 10%;
  margin-bottom: 45px;
  color: #777;
}
@media (max-width: 767px) {
  .tb5-connects-container .main_title p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.tb5-connects-container .owl-theme .owl-dots .owl-dot.active span,
.tb5-connects-container .owl-theme .owl-dots .owl-dot:hover span {
  background: #45009d !important;
}

.tb5-connects-container main#general_page {
  background-color: #fff;
}

.tb5-connects-container iframe#map_iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
@media (max-width: 991px) {
  .tb5-connects-container iframe#map_iframe {
    height: 400px;
  }
}

.tb5-connects-container .box_style_2 {
  background-color: #f8f8f8;
  padding: 25px 30px 30px 30px;
  position: relative;
  margin-bottom: 25px;
}
.tb5-connects-container .box_style_2 .form-control {
  background-color: white !important;
}

.tb5-connects-container .box_style_2 hr {
  margin: 10px -30px 20px -30px;
  border: 0;
  border-top: 2px solid #fff;
}

.tb5-connects-container ul.contacts_info {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.tb5-connects-container ul.contacts_info li {
  margin-bottom: 15px;
}

.tb5-connects-container ul.contacts_info li:last-child {
  margin-bottom: 0;
}

.tb5-connects-container .parallax_window_in {
  height: 420px;
  position: relative;
  display: table;
  width: 100%;
}

.tb5-connects-container #sub_content_in {
  display: table-cell;
  padding: 45px 15% 0 15%;
  vertical-align: middle;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .tb5-connects-container #sub_content_in {
    padding: 45px 30px 0 30px;
  }
}
.tb5-connects-container #sub_content_in h1 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 46px;
  font-size: 46px;
  font-size: 2.875rem;
  margin-bottom: 0;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .tb5-connects-container #sub_content_in h1 {
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 0;
  }
}
.tb5-connects-container #sub_content_in p {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .tb5-connects-container #sub_content_in p {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.tb5-connects-container .container_styled_1 {
  background: #f9f9f9;
}

.tb5-connects-container .team-item-img {
  position: relative;
}

.tb5-connects-container .team-item-img .team-item-detail {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}

.tb5-connects-container .team-item:hover .team-item-detail {
  opacity: 1;
  visibility: visible;
}

.tb5-connects-container .team-item-img .team-item-detail .team-item-detail-inner {
  margin: auto;
  padding: 25px;
}

.tb5-connects-container .team-item-detail-inner h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}

.tb5-connects-container .team-item-detail-inner .social {
  margin: 0 0px 25px 0px;
  padding: 0px;
}

.tb5-connects-container .team-item-detail-inner .social li {
  list-style: none;
  display: inline-block;
  margin: 0px 5px;
}
.tb5-connects-container .team-item-detail-inner .social li a {
  color: #fff;
}
.tb5-connects-container .team-item-detail-inner .social li a:hover {
  color: #d80075;
}

.tb5-connects-container .team-item-info {
  padding-top: 15px;
  text-align: center;
  text-transform: uppercase;
}
.tb5-connects-container .team-item-info h4 {
  margin-bottom: 0px;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
.tb5-connects-container .modal-content {
  border: none;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.tb5-connects-container .form-group {
  position: relative;
}
.tb5-connects-container .form-group.terms {
  padding: 12px 0 0 0;
}
.tb5-connects-container .form-group i {
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  right: 5px;
  top: 11px;
  color: #ccc;
  width: 25px;
  height: 25px;
  display: block;
  font-weight: 400 !important;
}

.tb5-connects-container span.error {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  position: absolute;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: -20px;
  right: -15px;
  z-index: 2;
  height: 25px;
  line-height: 1;
  background-color: #e34f4f;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px;
}
.tb5-connects-container span.error:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #e34f4f;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
}

.tb5-connects-container .container_radio.version_2 .error, .tb5-connects-container .container_check.version_2 .error {
  left: -15px;
  top: -30px;
  right: inherit;
}

.tb5-connects-container .radio_input .error {
  left: -15px;
  top: -30px;
  right: inherit;
}

.tb5-connects-container .styled-select span.error {
  top: -20px;
}

.tb5-connects-container .terms span.error {
  top: -30px;
  left: -15px;
  right: inherit;
}

.tb5-connects-container .form-control {
  border: 1px solid #d2d8dd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 16px !important;

  height: calc(2.55rem + 2px);
height: 50px;
}
.tb5-connects-container .form-control:focus {
  box-shadow: none;
  border-color: #45009d;
}

.tb5-connects-container .rating_wp {
  background-color: #f9f9f9;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 14px 10px 10px 15px;
  margin-bottom: 5px;
}

.tb5-connects-container .rating {
  display: inline-block;
  font-size: 0;
  float: right;
  position: relative;
}
@media (max-width: 767px) {
  .tb5-connects-container .rating {
    float: left;
    display: block;
  }
}

.tb5-connects-container .rating span.error {
  top: -30px;
}

.tb5-connects-container .rating_type {
  float: left;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500 !important;
  font-weight: normal;
  color: #45009d;
}
@media (max-width: 767px) {
  .tb5-connects-container .rating_type {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.tb5-connects-container .rating-input {
  float: right;
  padding: 0;
  margin: 0 0 0 0;
  opacity: 0;
  width: 4px;
}

.tb5-connects-container .rating:hover .rating-star:hover,
.tb5-connects-container .rating:hover .rating-star:hover ~ .rating-star,
.tb5-connects-container .rating-input:checked ~ .rating-star {
  background-position: 0 0;
}

.tb5-connects-container .rating-star,
.tb5-connects-container .rating:hover .rating-star {
  cursor: pointer;
  float: right;
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 0;
  background: url(../img/stars.svg) 0 -27px;
}

.tb5-connects-container .review_message {
  height: 250px !important;
}
@media (max-width: 767px) {
  .tb5-connects-container .review_message {
    height: 200px !important;
  }
}

/* Checkbox style */
.tb5-connects-container .container_check {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tb5-connects-container .container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.tb5-connects-container .container_check input:checked ~ .checkmark {
  background-color: #4adffb;
  border: 1px solid transparent;
}
.tb5-connects-container .container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #d2d8dd;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tb5-connects-container .container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tb5-connects-container .container_check.version_2 {
  padding: 3px 0 0 45px;
  min-height: 30px;
}
.tb5-connects-container .container_check.version_2 .checkmark {
  height: 30px;
  width: 30px;
}
.tb5-connects-container .container_check.version_2 .checkmark:after {
  left: 12px;
  top: 8px;
  width: 5px;
  height: 10px;
}

.tb5-connects-container .container_check input:checked ~ .checkmark:after {
  display: block;
}

/* Radio buttons */
.tb5-connects-container .container_radio {
  display: block;
  position: relative;
  font-size: 16px;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tb5-connects-container .container_radio input {
  position: absolute;
  opacity: 0;
}
.tb5-connects-container .container_radio input:checked ~ .checkmark:after {
  opacity: 1;
}
.tb5-connects-container .container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.tb5-connects-container .container_radio .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4adffb;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tb5-connects-container .container_radio.version_2 {
  padding: 3px 0 0 45px;
  min-height: 30px;
}
.tb5-connects-container .container_radio.version_2 input:checked ~ .checkmark:before {
  opacity: 1;
}
.tb5-connects-container .container_radio.version_2 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.tb5-connects-container .container_radio.version_2 .checkmark:after {
  width: 30px;
  height: 30px;
  top: -1px;
  left: -1px;
}
.tb5-connects-container .container_radio.version_2 .checkmark:before {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  left: 12px;
  top: 8px;
  width: 5px;
  height: 10px;
  border: solid white;
  z-index: 999;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Show/hide password */
.tb5-connects-container .my-toggle {
  background: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #888;
  cursor: pointer;
  font-size: 10px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  margin-right: 5px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
}
.tb5-connects-container .my-toggle:hover, .tb5-connects-container .my-toggle:focus {
  background-color: #eee;
  color: #333;
  outline: transparent;
}

.tb5-connects-container .hideShowPassword-wrapper {
  width: 100% !important;
}

/*Password strength */
.tb5-connects-container #pass-info {
  width: 100%;
  margin-bottom: 15px;
  color: #555;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 3px 3px 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.tb5-connects-container #pass-info.weakpass {
  border: 1px solid #FF9191;
  background: #FFC7C7;
  color: #94546E;
}
.tb5-connects-container #pass-info.stillweakpass {
  border: 1px solid #FBB;
  background: #FDD;
  color: #945870;
}
.tb5-connects-container #pass-info.goodpass {
  border: 1px solid #C4EEC8;
  background: #E4FFE4;
  color: #51926E;
}
.tb5-connects-container #pass-info.strongpass {
  border: 1px solid #6ED66E;
  background: #79F079;
  color: #348F34;
}
.tb5-connects-container #pass-info.vrystrongpass {
  border: 1px solid #379137;
  background: #48B448;
  color: #CDFFCD;
}

.tb5-connects-container .radio_input .container_radio {
  display: inline-block;
  margin: 12px 0 0 12px;
}

/* Fileupload */
.tb5-connects-container .fileupload {
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.tb5-connects-container input[type=file] {
  border: 1px solid #d2d8dd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 5px;
  height: auto;
  width: 100%;
  color: #999;
}
.tb5-connects-container input[type=file]:focus {
  box-shadow: none;
  outline: none;
}

.tb5-connects-container input[type=file]::-webkit-file-upload-button, .tb5-connects-container input[type=file].invalid::-webkit-file-upload-button, .tb5-connects-container input[type=file].valid::-webkit-file-upload-button {
  color: #fff;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 10px 8px 38px;
  background: #4adffb url(../img/upload_icon.svg) 8px center no-repeat;
  outline: none;
}
.tb5-connects-container input[type=file]::-webkit-file-upload-button:focus, .tb5-connects-container input[type=file].invalid::-webkit-file-upload-button:focus, .tb5-connects-container input[type=file].valid::-webkit-file-upload-button:focus {
  box-shadow: none;
  outline: none;
}

/* Jquery select */
.tb5-connects-container .nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #d2d8dd;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 15px;
  padding-right: 27px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.tb5-connects-container .nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #45009d;
}
.tb5-connects-container .nice-select:after {
  border-bottom: 2px solid #cccccc;
  border-right: 2px solid #cccccc;
  content: '';
  display: block;
  height: 8px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}
.tb5-connects-container .nice-select.open:after {
  transform: rotate(-135deg);
}
.tb5-connects-container .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.tb5-connects-container .nice-select.disabled {
  border-color: #9e9e9e;
  color: #999999;
  pointer-events: none;
}
.tb5-connects-container .nice-select.disabled:after {
  border-color: white;
}
.nice-select.wide {
  width: 100%;
	height: 50px;
    line-height: 50px;
}
.tb5-connects-container .nice-select.wide .list {
  left: -1px !important;
  right: -1px !important;
}
.tb5-connects-container .nice-select.right {
  float: right;
}
.tb5-connects-container .nice-select.right .list {
  left: auto;
  right: 0;
}
.tb5-connects-container .nice-select.small {
  font-size: 12px;
  height: 42px;
  line-height: 40px;
}
.tb5-connects-container .nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 40px;
  min-height: 40px;
}
.tb5-connects-container .nice-select .list {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-25px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9999;
  height: 15vh;
  overflow: auto;
}
.tb5-connects-container .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.tb5-connects-container .nice-select .list::-webkit-scrollbar {
  width: 14px;
  height: 18px;
}
.tb5-connects-container .nice-select .list::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  -webkit-border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
.tb5-connects-container .nice-select .list::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.tb5-connects-container .nice-select .list::-webkit-scrollbar-corner {
  background-color: transparent;
}
.tb5-connects-container .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 38px;
  list-style: none;
  min-height: 38px;
  outline: none;
  padding-left: 15px;
  padding-right: 26px;
  text-align: left;
  transition: all 0.2s;
}
.tb5-connects-container .nice-select .option:hover, .tb5-connects-container .nice-select .option.focus, .tb5-connects-container .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.tb5-connects-container .nice-select .option.selected {
  font-weight: 500;
}
.tb5-connects-container .nice-select .option.disabled {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

.tb5-connects-container .no-csspointerevents .nice-select .list {
  display: none;
}
.tb5-connects-container .no-csspointerevents .nice-select.open .list {
  display: block;
}

/* Budget slider */
.tb5-connects-container .budget_slider {
  background-color: #f8f8f8;
  margin-bottom: 20px;
  padding: 45px 30px 15px 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.tb5-connects-container .budget_slider span {
  display: block;
  font-weight: 600;
  color: #45009d;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 25px;
}
.tb5-connects-container .budget_slider span:before {
  content: '$';
}

.tb5-connects-container .rangeslider__handle {
  border: 2px solid #4adffb !important;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.tb5-connects-container .rangeslider__fill {
  background: #4adffb !important;
}

/*-------- 3.2 Spacing --------*/
.tb5-connects-container .add_bottom_10 {
  margin-bottom: 10px;
}

.tb5-connects-container .add_bottom_15 {
  margin-bottom: 15px;
}

.tb5-connects-container .add_bottom_30 {
  margin-bottom: 30px;
}

.tb5-connects-container .add_bottom_45 {
  margin-bottom: 45px;
}

.tb5-connects-container .add_bottom_60 {
  margin-bottom: 60px;
}

.tb5-connects-container .add_bottom_75 {
  margin-bottom: 75px;
}

.tb5-connects-container .add_top_10 {
  margin-top: 10px;
}

.tb5-connects-container .add_top_15 {
  margin-top: 15px;
}

.tb5-connects-container .add_top_20 {
  margin-top: 20px;
}

.tb5-connects-container .add_top_30 {
  margin-top: 30px;
}

.tb5-connects-container .add_top_60 {
  margin-top: 60px;
}

.tb5-connects-container .more_padding_left {
  padding-left: 40px;
}

.tb5-connects-container .nomargin_top {
  margin-top: 0;
}

.tb5-connects-container .nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

.tb5-connects-container .nomargin {
  margin: 0 !important;
}

.tb5-connects-container .margin_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.tb5-connects-container .margin_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tb5-connects-container .margin_60_35 {
  padding-top: 60px;
  padding-bottom: 35px;
}


.tb5-connects-container .programs-card {
    background-color: #f9f9f9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 35px 15px 30px 30px;

    margin-bottom: 30px;
}
.tb5-connects-container .decoration {
    height: 2px;
    background-color: #ededed;
    margin-bottom: 30px;
    display: block;
    clear: both;
}


/*progressbar*/
.tb5-connects-container #progressbar {
	margin-bottom: 10px;
	overflow: hidden;
  position: relative;
  z-index: 1;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
.tb5-connects-container #progressbar a {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	width: 25%;
	float: left;
	position: relative;
  font-size: 12px;
  font-weight: 700;
}

.tb5-connects-container #progressbar a:before {
	content: counter(step);
	counter-increment: step;
	width: 60px;
	line-height: 60px;
	display: block;
	font-size: 16px;
	color: #fff;
	background: #6B29B4;
	border-radius: 50%;
	margin: 0 auto 15px auto;
}
/*progressbar connectors*/
.tb5-connects-container #progressbar a:after {
	content: '';
	width: 78%;
	height: 3px;
	background: #6B29B4;
	position: absolute;
	left: -50%;
	top: 30px;
	z-index: -1; /*put it behind the numbers*/
}
.tb5-connects-container #progressbar a:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
.tb5-connects-container #progressbar a.active:before{
	background:#FFDB1A;
	color: #333;
}
.tb5-connects-container #progressbar a:hover {
  cursor: default;
}

.tb5-connects-container .program-name {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.tb5-connects-container h5.program-name {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 400;
}

.tb5-connects-container .lead {
	line-height: 1.5;
	font-size: 17px;
    font-weight: 400;
}


										.tb5-connects-container .required::-webkit-input-placeholder, .tb5-connects-container .required ::-webkit-datetime-edit-fields-wrapper { /* Edge */
											color: red !important;
										}

										.tb5-connects-container .required:-ms-input-placeholder { /* Internet Explorer */
											color: red !important;
										}
										.tb5-connects-container .required::placeholder, .tb5-connects-container #date-time-edit ::-webkit-datetime-edit-month-field {
											color: red !important;
                    }

.dob-required:invalid {
    border: 2px solid red !important;
}


.dob-required:invalid:focus  {
    border: 2px solid red !important;
}


.tb5-connects-container .inner-page button.btn_1.rounded:disabled,
.tb5-connects-container .inner-page button.btn_1.rounded[disabled],
.tb5-connects-container input.btn_1.rounded[disabled]{
  border: 1px solid #ffe56b;
  background-color: #ffe87d;
  color: #999;
}

[v-cloak] { display:none; }

.programs-card {
  position: relative;
}

.child-date {
  font-size: 70%; background:#f4f4f4; padding:3px 8px;  display:inline-block; border-radius:10px; color:#444;
  margin-top: 4px;
  width: fit-content;
  
}
.children {
  position: absolute;
  top: -15px;
  right: 0px;
}
.child-date.h4 {
  font-size: 1.2rem;
  border: 3px solid #f9f9f9;
  padding:8px 12px;
  font-weight: 600;
  margin-right:10px;
}


.container {
    width: 100% !important;
    max-width: 1250px !important;
    margin-left: auto;
    margin-right: auto;
}







@media screen and (max-width: 1450px) {
	header .main-menu .menu > li a, header .utility-menu .menu li a {
		font-size: 16px;
	}
}
@media screen and (max-width: 1320px) {
	header .container nav {
		width: auto;
	}
}
@media screen and (max-width: 990px) {
	header {
		padding: 10px 0;
	}
	header .site-branding img {
		max-width: 100px;
	}
}
@media screen and (max-width: 768px) {
	.tb-list-lg a, .tb-list-lg a span {
	font-size: 18px !important;
}
}

footer .col {
    flex-basis: auto;
    flex-grow: 1;
	  padding: 0;
}
.tb5-connects-container {
    margin-top: 0;
}
.child-date.h4 {
    font-size: 1rem !important;
}

header .container {
	max-width: unset !important;
}

.tb5-connects-container #bottom-wizard  {
	padding-top: 0 !important;
	position: -webkit-sticky; /* Safari */
	position: sticky;
	bottom: 0;
	z-index:99;
	border-top: none !important;
}
    .tb5-connects-container #bottom-wizard .button-container {
        max-width: 860px;
        background: #fff;
        margin: 0 auto;
        padding: 16px 60px;
        border-top: 2px solid #ededed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 0 0 24px 24px;
    }

.buttons-left {
  text-align: left;
  width: 50%;
  text-transform: none;
}
.buttons-right {
  text-align: right;
  width: 50%;
  text-transform: none;
}

.tb5-connects-container #bottom-wizard .btn_1 {
  text-transform: none;
}
.tb5-connects-container #bottom-wizard .btn_1.red {
  text-transform: none;
  background: #cd2653;
  color:white;
}
.tb5-connects-container #bottom-wizard .btn_1:hover {
  cursor: pointer !important;
  background: #f4d315 !important;
}
.tb5-connects-container #bottom-wizard .btn_1.red:hover {
  background: #ac2045 !important;
  cursor: pointer !important;
}
.tb5-connects-container #bottom-wizard .btn_1.rounded[disabled]:hover {
    border: 1px solid #ffe56b !important;
    background-color: #ffe87d !important;
    color: #999;
}
