      /*new plan section - may 23 -2022*/

      .featuresOuter .feature-nav {

        border-radius: 15px;
     }

     .featuresOuter .feature-nav {
        flex: 0 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
        margin: 20px;
     }

     .featuresOuter .custom-checkbox input:checked~.checkmark {
        background-color: #6068e0;
        visibility: visible;
     }

     .featuresOuter {
        padding: 20px 0 !important;
     }

     .featuresOuter .featureDiv {
        display: flex;
        justify-content: space-between;
        gap: 8px;
     }

     .featuresOuter .custom-checkbox.checked {
        border: 2px solid #5F68E0;
     }


     .featuresOuter .custom-checkbox {
        display: block;
        position: relative;
        cursor: pointer;
        font-size: 14px;
        line-height: 16px;
        border: 1px solid #9C9C9C;
        background: #fff !important;
        padding: 1.6rem;
        border-radius: 8px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-bottom: 0;
     }

     .featuresOuter .custom-checkbox>strong {
        display: block;
     }

     /* Hide the browser's default checkbox */

     .featuresOuter .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
     }

     /* Create a custom checkbox */

     .featuresOuter .custom-checkbox .checkmark {
        position: absolute;
        top: 8px;
        right: 8px;
        height: 18px;
        width: 18px;
        background-color: #eee;
        border-radius: 50%;
        visibility: hidden;
     }

     /* On mouse-over, add a grey background color */

     .featuresOuter .custom-checkbox:hover input~.checkmark {
        background-color: #ccc;
     }

     /* When the checkbox is checked, add a blue background */

     .featuresOuter .custom-checkbox input:checked~.checkmark {
        background-color: #6068e0;
        visibility: visible;
        border: 1px solid #5F68E0;
     }

     /* Create the checkmark/indicator (hidden when not checked) */

     .featuresOuter .custom-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
     }

     /* Show the checkmark when checked */

     .featuresOuter .custom-checkbox input:checked~.checkmark:after {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        width: 100%;
        height: 100%;
        color: #fff;
     }

     /* Style the checkmark/indicator */

     .featuresOuter .custom-checkbox .checkmark::after {
        content: "\f17b";
        font: normal normal normal 16px/1 "LineAwesome";

     }

     .featureHead h6 {
        color: rgb(0 0 0 / 0.8);
     }

     .featureHead p {
        color: var(--gray);
        font-size: 16px;
        line-height: 22px;
     }

     .feature-icon {
        height: 80px;
        width: 80px;
     }

     .ls-blue-text {
        color: var(--blue) !important;
     }

     .fw-400 {
        font-weight: 400 !important;
     }

     .ls-mb-2 {
        margin-bottom: 2rem;
     }

     .featuresOuter .feature-nav {
        flex: 0 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
        margin: 20px;
     }

    

     .whiteTxt {
        color: var(--white);
     }

     .btn-primary.orangeColorBtn {
        background-color: var(--orange);
        border-color: var(--orange);
        color: var(--white);
     }

     .btn-primary.orangeColorBtn:hover,
     .btn-primary.orangeColorBtn:active,
     .btn-primary.orangeColorBtn:focus {
        background-color: var(--dark-orange);
        border-color: var(--dark-orange);
        color: var(--white);
     }
     .btn-primary.orangeColorBtn:not(:disabled):not(.disabled):active, .btn-primary.orangeColorBtn:not(:disabled):not(.disabled).active, .show>.btn-primary.orangeColorBtn.dropdown-toggle
     {
        background-color: var(--dark-orange);
        border-color: var(--dark-orange);
        color: var(--white);
     }
     .actionDiv{
        display: flex;
   justify-content: flex-end;
   margin-top: 2rem;
   align-self: flex-end;
     }

     @media screen and (max-width: 768px) {
        .featuresOuter .feature-nav {
           flex: 0 0 calc(100% - 40px);
           max-width: calc(100% - 40px);
           margin: 20px 0;
        }
     }

     @media screen and (max-width: 480px) {
        .featuresOuter .feature-nav {
           flex: 0 0 calc(100% - 20px);
           max-width: calc(100% - 20px);
           margin: 10px 0;
        }
     }