.pricing-card-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1 0 auto;
}

.pricing-card-wrapper > .card.pricing-card {
    margin: 7px;
    width: calc(33% - 11px);
}


@media screen and (max-width: 1200px) {
    .pricing-card-wrapper > .card.pricing-card {
        width: calc(50% - 11px);
    }
  
  .pricing-card-wrapper > .card:nth-child(2n+1) {
    margin-left: 0px;
  }
  
  .pricing-card-wrapper > .card:nth-child(2n+2) {
    margin-right: 0px;
  }
}

@media screen and (max-width: 800px) {
    .pricing-card-wrapper > .card.pricing-card {
        width: 100%;
      margin-left: 0px;
      margin-right: 0px;
    }
}

.pricing-card-wrapper > .card:first-child {
    margin-left: 0px;
}

.pricing-card-wrapper > .card:last-child {
    margin-right: 0px;
}

.pricing-card-wrapper  .price-comment {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.pricing-card-wrapper  .price-comment > p {
    font-size: 13px;
}

.pricing-card-wrapper h2.card-heading {
    font-size: 60px;
}

.period-switcher {
     display: flex;
    justify-content: center;

}

.period-switcher .button {
    margin: 10px;
}

.price-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
}

.price-display > .price-period {
    padding: 5px;
    color: #555555;
    font-size:22px;
    text-align: center;
}

.on-request {
    font-size: 28px !important;
}

.pricing-card-wrapper .card {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 1.1rem;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .card {
    padding: 2rem 1rem;
  }
}

@media screen and (max-width: 787px) {
  .card {
    margin-bottom: 1rem;
  }
}

.card hr {
  border-bottom-color: #ced4db;
  border-bottom-width: 1.5px;
}

.card-header {
  text-align: center;
}

.card-body ul {
  padding: 0;
}

.card-subtitle,
.card-body li {
  font-size: 1.0em;
  line-height: 1.2em;
}

.card-body li {
  list-style: none;
  margin: 0;
  padding: 0.18rem 0;
  text-align: left;
}

.card-body svg {
  display: inline-block;
  margin-right: 10px;
  max-width: 20px;
}



.pricing-card-wrapper p.card-subtitle {
    min-height: 72px;
}

.period-switcher {
    margin-bottom: 10px
    display:flex;
}

.period-switcher p {
	font-weight: 700;
}

.period-switcher input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;

}

.period-switcher label {
	cursor: pointer;
	text-indent: -9999px;
	width: 80px;
	height: 40px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
	margin:10px
}

.period-switcher label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

.period-switcher input:checked + label {
	background: #f26522;
}

.period-switcher input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

.period-switcher label:active:after {
	width: 20px;
}


.pricing-card-wrapper p.card-subtitle {
    min-height: 72px;
}

.pricing-card-wrapper button {
  padding: 12px 33px;
}

.card-heature-group {
  font-weight:700;
  text-align:left;
  color: #333;
}

.card-heature-group-like-description {
  font-weight:500;
  text-align:left;
  color: #777;
  padding-bottom:25px;
}
.icons-primary .fas {
  color: #f26522;
}

.icons-primary svg {
  color: #f26522;
}

ul.fa-ul.icons-primary {
  margin-top:15px !important;
}

.fa-ul {
  margin-left: 32px !important;
}

.fa-ul>li {
  margin-bottom:5px !important;
}

ul.fa-ul.icons-primary {
  margin-bottom:30px !important;
}

.features-list {
  color:#777 !important;
}

.highlight-tier {
  border: 2px solid #f26522;
  box-shadow: 0 0 15px rgba(0, 115, 230, 0.2);
  position: relative;
  z-index: 1;
}

.highlight-tier::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 12px;
  background: #191a1a;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
}