.pricing-table {
  background: #fff;
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  border-radius: 4px;
  transition: 0.3s;
}

.pricing-table:hover {
  box-shadow: 0px 1px 10px -4px rgba(0, 0, 0, 0.15);
}

.pricing-table .pricing-label {
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}

.pricing-table h2 {
  color: #3b3b3b;
  font-size: 22px;
  font-weight: 600;
}

.pricing-table h5 {
  color: #ff3333;
  font-size: 15px;
  font-weight: 400;
  margin-top: 15px;
}

.pricing-table .pricing-features {
  margin-top: 2rem;
}

.pricing-table .pricing-features .feature {
  font-size: 15px;
  margin: 0.5rem 0;
  color: #9b9a9a;
}

.pricing-table .pricing-features .feature span {
  display: inline-block;
  font-size: 15px;
  float: right;
  color: #3b3b3b;
  font-weight: 500;
}

.pricing-table .price-tag {
  margin-top: 2rem;
  text-align: center;
  font-weight: 500;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.pricing-table .price-tag .symbol {
  font-size: 24px;
}

.pricing-table .price-tag .amount {
  letter-spacing: -2px;
  font-size: 36px;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.pricing-table .price-tag .after {
  color: #3b3b3b;
  font-weight: 500;
}

.pricing-table .price-button {
  display: block;
  color: #fff;
  margin-top: 2rem;
  padding: 0.75rem;
  border-radius: 2px;
  text-align: center;
  font-weight: 500;
  transition: 0.3s;
}

.pricing-table .price-button:hover {
  text-decoration: none;
}

.purple .pricing-label {
  background: #cad2ff;
  color: #627afe;
}

.purple .price-tag {
  color: #627afe;
}

.purple .price-button {
  background: #627afe;
}

.purple .price-button:hover {
  background: #546dfe;
}

.turquoise .pricing-label {
  background: #b9edee;
  color: #229b9f;
}

.turquoise .price-tag {
  color: #44cdd2;
}

.turquoise .price-button {
  background: #44cdd2;
}

.turquoise .price-button:hover {
  background: #2dbcc4;
}

.org .pricing-label {
  background: #ffc4c4;
  color: #ed4949;
}

.org .price-tag {
  color: #ff5e5e;
}

.org .price-button {
  background: #ff5e5e;
}

.org .price-button:hover {
  background: #f23c3c;
}
.blue .pricing-label {
  background: #b1d1ee;
  color: #2c76c7;
}

.blue .price-tag {
  color: #4693e7;
}

.blue .price-button {
  background: #4693e7;
}

.blue .price-button:hover {
  background: #18579b;
}
.half-circle-ribbon {
  background: #ff6e26;
  color: #FFF;
  height: 60px;
  width: 60px;
  text-align: right;
  padding-top: 5px;
  padding-right: 5px;
  position: absolute;
  top: -1px;
  right: 15px;
  flex-direction: row;
  border-radius: 0 0 0 100%;
  border: 1px dashed #FFF;
  box-shadow: 0 0 0 3px #ff6e26;
}
.accordion {
    display: flex;
    flex-direction: column;
    margin: 50px auto;
}
.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 10px 20px;
    box-sizing: border-box;
    align-items: center;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 16px;
    color: #444;
    border-top: 1px dashed #ddd;
    padding: 15px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}
.mr-10 {
    margin-right: 10px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.text-center{
    text-align: center;
}
.buymac{
    text-align: center;
    margin-top: 12px;
    font-size: 15px;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
}