.pricing-c-descriptions {
    min-height: 200px;
}

.blob {
    position: absolute;
    top: -20%;
    left: -8%;
    width: 50%;
    max-width: 500px;
    z-index: -10;
}

.blobAndDots {
    position: absolute;
    right: -8%;
    bottom: -13%;
    width: 50%;
    max-width: 500px;
    z-index: -10;
}

@media screen and (max-width:1280px) {
    .descriptions {
        min-height: 340px;
    }

    .header {
        min-height: 96px;
    }
}

@media screen and (max-width:1023px) {
    .descriptions {
        min-height: auto;
        margin-bottom: 30px;
    }

    .header {
        min-height: auto;
    }
}

.expand:after {
    top:12px !important;
    transform: rotate(225deg) !important;
    content: '';
}

.expand {
    border-bottom: 2px solid #1DA1F2;
    background-color: #F2F2F2;
}

.fold {
    border-bottom: 2px solid black;
    background-color: transparent;
}

.pricing-accordion {
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 30%);
    position: relative;
  }

.pricing-c-accordion-panel {
    padding: 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
  
.pricing-accordion:after {
    display: inline-block;  
    position: absolute;
    right: 20px;
    content: '';
    height: 10px;
    width: 10px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: 0.5s;
}
  
.pricing-accordion-active:after {
    transform: rotate(225deg);
    content: '';
}

@media (max-width: 360px) {
    .pricing-accordion:after {
        right: 10px;
        content: '';
        height: 10px;
        width: 10px;
    }
    .pricing-accordion{
        padding:20px 0px;
    }
}

.pricing-c-label {
    /* width: calc(75% - 5px); */
    width: 75%;
}

/* custom checkbox */
.get-quote-checkbox-container {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
/* Hide the browser's default checkbox */
.get-quote-checkbox-container #get-quote-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
/* Create a custom checkbox */
.get-quote-checkbox-checkmark {
    display: block;
    height: 18px;
    width: 18px;
    background-color: white;
    border: 2px solid #23DBA7;
    border-radius: 2px;
}
  
#get-quote-checkbox:checked ~ .get-quote-checkbox-checkmark {
    background-color: #23DBA7;
}
  
/* Create the checkmark/indicator (hidden when not checked) */
.get-quote-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
/* Show the checkmark when checked */
#get-quote-checkbox:checked ~ .get-quote-checkbox-checkmark:after {
    display: block;
}
  
/* Style the checkmark/indicator */
.get-quote-checkbox-checkmark:after {
    left: 5px;
    top: 0px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* end of custom checkbox */

.pricing-container {
    overflow-x: auto;
}

@media screen and (max-width:940px) {
    .pricing-container {
        overflow-x: scroll
    }
}


/* feature table */

.feature-table {
    width: 100%;
  }

  @media screen and (max-width:768px) {
    .feature-table {
      width: 710px;
    }

    .feature-table-container {
      overflow-x: scroll;
    }
  }

  .feature-table-container {
    overflow-x: auto;
  }

  /* end of feature table */