.pricing-section {
  padding: 40px 0;
}

.pricing-section .section-title {
  margin-bottom: 40px;
}

.pricing-section__boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-section__main-box {
  margin: 0 5px;
  width: 273px;
  margin-bottom: 40px;
}

.pricing-section__box {
  box-shadow: 0px 0px 10px 6px rgba(24,30,110,0.08);
  border-radius: 10px;
  padding: 20px 0;
}

.pricing-section__box-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 15px;
  min-height: 50px;
}

.pricing-section__box-header-left {
  color: #5472d3;
  font-size: 24px;
  font-weight: bold;
}

.pricing-section__box-header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #5472d3;
  font-size: 24px;
  font-weight: bold;
}

.pricing-section__box-header-right.retreat > span:first-child {
  padding-left: 10px;
}

.pricing-section__box-header-right--small {
  font-size: 10px;
  font-weight: normal;
  color: #5472d3;
}

.pricing-section__box-header-right--small.retreat {
  padding-top: 10px;
}

.pricing-section__box-content-title {
  color: #6bc39f;
  font-size: 16px;
}

.pricing-section__box-options {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-section__box-line {
  padding: 7px 30px;
  text-align: left;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.pricing-section__box-line:not(:first-child) {
  border-top: 0.0625rem solid #dcdada;
}

.pricing-section__box-icon.check {
  color: #6bc39f;
  font-size: 16px;
  padding-top: 2px;
  padding-right: 5px;
}

.pricing-section__box-icon.times{
  color: #e20404;
  font-size: 17px;
  padding: 0 2px;
  padding-right: 7px;
}

.pricing-section__box-button {
  display: block;
  text-align: center;
  width: 175px;
  padding: 10px 0;
  margin: 5px auto;
  background-color: #5472d3;
  cursor: pointer;
  color: #fff;
  border-radius: 20px;
}

/* media queries */  

@media (max-width: 767px) {
  .pricing-section__main-box {
    margin: 0;
    margin-bottom: 40px;
  }

  .pricing-section__box-content-title {
    font-size: 14px;
    font-weight: bold;
  }

  .pricing-section__box-button.desktop {
    display: none;
  }
}


@media (min-width: 768px) {
  .pricing-section__box-button.mobile {
    display: none;
  }
}