.features-image
{
	width:5vw;
}
#features .feature-column
{
	position:relative;
	width:100%;
	margin-bottom: 30px;
}

.switch {
  position: relative;
  display: flex;
  align-items: center;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 34px;
  background-color: transparent;
  -webkit-transition: .4s;
  transition: .4s;
  margin-right: 12px;
  border: 2px solid #ccc;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background-color: #00aeef;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked ~ .slider {
  background-color: transparent;
}

input:focus ~ .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked ~ .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch input ~ .bill--monthly {
	color: #00aeef;
}

.switch label {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 0px;
	margin-right: 12px;
	transition: .4s;
}

.switch input:checked ~ .bill--monthly {
	color: #212529;
}

.switch input:checked ~ .bill--yearly {
	color: #00aeef;
}

.pricing-plan {
	display: flex;
	margin-top: 60px;
	margin-bottom: 60px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.plan-wrapper {
	border: 2px solid #f3f3f3;
	padding: 15px;
	flex: 0 0 calc(25% - 15px);
	background-color: #fff;
}

.plan-wrapper h3 {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	min-height: 70px;
	align-items: center;
	display: flex;
	justify-content: center;
}

.plan-wrapper .plan-price {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.plan-wrapper .plan-price .amount {
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	margin: 0 4px;
}

.plan-wrapper .plan-price .bill-type {
	font-size: 12px;
	line-height: 13px;
	align-self: center;
	font-weight: 600;
}

.plan-wrapper .c-btn {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	min-width: 200px;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	display: flex;
	margin-bottom: 12px;
}

.feature-list li svg {
	height: 24px;
	display: inline-block;
	margin-right: 12px;
	flex: 0 0 24px;
	fill: #69e859;
}

.feature-list li p {
	line-height: 24px;
	font-size: 14px;
	color: #212529;
	margin-bottom: 0px;
}

.feature-list li p strong {
	color: #a9a9a9;
	font-weight: 400;
}

.plan-wrapper .c-btn:before{
	top: 0px;
}

.section-pricing {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.plan-header {
	min-height: 230px;
	display: flex;
	flex-direction: column;
}

.plan-header .c-btn {
	margin-top: auto;
}

.save-tag {
	color: #00aeef;
}

.billing-option {
	display: flex;
}

.billing-option .switch {
	margin-top: 20px;
}

.feature-list.cf--grouped {
	margin-top: 30px;
}

.feature-list {
	margin-top: 12px;
}

.text-underline {
	text-decoration: underline;
	cursor: pointer;
}

.plan-wrapper h6 {
	margin-top: 25px;
	font-weight: 600;
}

.plan-price-note {
	text-align: center;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
}

.cld-contact-info {
	max-width: 350px;
	margin-right: 30px;
}

.cld-hubspot-form {
	flex-grow: 1;
}

.page-payment-result {
	min-height: calc(100vh - 60px);
	display: flex;
	justify-content: center;
	padding: 190px 0px 0px;
}

.site--loaded .payment{
	opacity: 1;
  transform: scale(1);
}

.payment {
	opacity: 0;
  transform: scale(0);
  position: relative;
  padding: 30px;
	transition: all 0.3s cubic-bezier(0.420, 0.000, 0.275, 1.155);
}

.payment__check,
.payment__error {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate3d(-50%, -50%, 0);
  fill: #fff;
}

.payment__background {
  fill: #00aeef;
  animation: rotate 15s linear both infinite;
	max-width: initial;
  max-height: inherit;
}

.payment--success .payment__background {
	fill: #4BB543;
}

.payment--error .payment__background {
	fill: #CA0B00;
	animation: none;
}

.section-message .message-container {
	text-align: center;
	max-width: 430px;
	padding: 0 15px;
}

.section-message .message-container p {
	font-size: 16px;
	line-height: 24px;
	color: #999;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow {
  0%, 100% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes checkmark {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  10%, 50%, 90% {
    opacity: 1;
    transform: scale(1);
  }
}

@media only screen and (min-width:1440px)
{
	#features .feature-column
	{
		flex: 0 0 33.33%;
		width:33.33%;
		max-width:33.33%;
	}
	#pointer3
	{
		margin-top:1vw;
		margin-bottom:1.3vw;
	}
}
@media only screen and (max-width:1200px)
{
	.plan-wrapper {
		flex: 0 0 calc(50% - 15px);
		margin-bottom: 30px;
	}
}
@media only screen and (min-width:1024px) and (max-width:1439px)
{
	#features .feature-column
	{
		flex:  0 0 33.33%;
		width: 33.33%;
		max-width: 33.33%;
	}
	#pointer3
	{
		margin-bottom:1vw;
	}
}
@media only screen and (max-width:1200px)
{
	.iframe-container iframe {
    max-height: 314px;
	}
}

@media only screen and (max-width:991px)
{
	.iframe-container {
		margin-top: 30px;
	}
}
@media only screen and (max-width:767px)
{
	.switch label {
    font-size: 14px;
    margin-right: 6px;
	}
	.contact-wrapper .d-flex {
		flex-direction: column;
	}

	.contact-wrapper .cld-contact-info {
		order: 2;
		margin-top: 40px;
	}

	.navbar-nav {
		padding-bottom: 20px;
	}
	
	.iframe-container {
		margin-top: 30px;
	}

	.iframe-container iframe {
    width: 100%;
    height: 56vw;
    max-height: 305px;
	}

	.features-image {
    width: 80px;
	}
}
@media only screen and (max-width:540px)
{
	.plan-wrapper {
		flex: 0 0 calc(100%);
	}
}
@media only screen and (max-width:425px)
{
	#features .feature-column
	{
		max-width:100%;
	}
}
@media only screen and (min-width: 426px) and (max-width:1023px)
{
	#features .feature-column
	{
		flex: 0 0 50%t;
		width:50%;
		max-width:50%;
	}
}