  /* CSS */
  .button-33 {
    background-color: #c2fbd7;
    border-radius: 100px;
    box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset, rgba(44, 187, 99, .15) 0 1px 2px, rgba(44, 187, 99, .15) 0 2px 4px, rgba(44, 187, 99, .15) 0 4px 8px, rgba(44, 187, 99, .15) 0 8px 16px, rgba(44, 187, 99, .15) 0 16px 32px;
    color: green;
    cursor: pointer;
    display: inline-block;
    /* font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif; */
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-33:hover {
    box-shadow: rgba(44, 187, 99, .35) 0 -25px 18px -14px inset, rgba(44, 187, 99, .25) 0 1px 2px, rgba(44, 187, 99, .25) 0 2px 4px, rgba(44, 187, 99, .25) 0 4px 8px, rgba(44, 187, 99, .25) 0 8px 16px, rgba(44, 187, 99, .25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
}

:root {
    --card-line-height: 1.2em;
    --card-padding: 1em;
    --card-radius: 0.5em;
    --color-green: #558309;
    --color-gray: #c4d1e1;
    --color-dark-gray: #c4d1e1;
    --radio-border-width: 2px;
    --radio-size: 1.5em;
}



.grid {
    display: grid;
    grid-gap: var(--card-padding);
    /* margin: 0 auto; */
    max-width: 80em;
    padding: 0;
}

@media (min-width: 42em) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.grid2 {
    display: grid;
    grid-gap: var(--card-padding);
    /* margin: 0 auto; */
    max-width: 80em;
    padding: 0;
}

@media (min-width: 42em) {
    .grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background-color: #fff;
    border-radius: var(--card-radius);
    position: relative;
}
.card2 {
    /* background-color: rgb(190, 248, 185); */
    border-radius: var(--card-radius);
    position: relative;
    color:rgb(117, 117, 117)

}

.card:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.radio {
    font-size: inherit;
    margin: 0;
    position: absolute;
    right: calc(var(--card-padding) + var(--radio-border-width));
    top: calc(var(--card-padding) + var(--radio-border-width));
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .radio {
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff;
        border: var(--radio-border-width) solid var(--color-gray);
        border-radius: 50%;
        cursor: pointer;
        height: var(--radio-size);
        outline: none;
        transition: background 0.2s ease-out, border-color 0.2s ease-out;
        width: var(--radio-size);
    }

    .radio::after {
        border: var(--radio-border-width) solid #fff;
        border-top: 0;
        border-left: 0;
        content: "";
        display: block;
        height: 0.75rem;
        left: 25%;
        position: absolute;
        top: 50%;
        transform: rotate(45deg) translate(-50%, -50%);
        width: 0.375rem;
    }

    .radio:checked {
        background: var(--color-green);
        border-color: var(--color-green);
       
    }

    .card:hover .radio {
        border-color: var(--color-dark-gray);
    }

    .card2:hover .radio:checked  {
        border-color: var(--color-green);
    }

    .radio:checked + .card2{
      background-color: rgb(190, 248, 185) /* New background color when radio is checked */
    }



}

.plan-details {
    border: var(--radio-border-width) solid var(--color-gray);
    border-radius: var(--card-radius);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: var(--card-padding);
    transition: border-color 0.2s ease-out;
}

.card:hover .plan-details {
    border-color: var(--color-dark-gray);
}

.radio:checked~.plan-details {
    border-color: var(--color-green);
}

.radio:focus~.plan-details {
    box-shadow: 0 0 0 2px var(--color-dark-gray);
}

.radio:disabled~.plan-details {
    color: var(--color-dark-gray);
    cursor: default;
}

.radio:disabled~.plan-details .plan-type {
    color: var(--color-dark-gray);
}

.card:hover .radio:disabled~.plan-details {
    border-color: var(--color-gray);
    box-shadow: none;
}

.card:hover .radio:disabled {
    border-color: var(--color-gray);
}

.plan-type {
    color: var(--color-green);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 2%;
}

.plan-cost {
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0.5rem 0;
    margin-bottom: 2%;
}

.slash {
    font-weight: normal;
}

.plan-cycle {
    font-size: 2rem;
    font-variant: none;
    border-bottom: none;
    cursor: inherit;
    text-decoration: none;
}

.hidden-visually {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.points {

    margin-bottom: 4%;
    list-style-type: disc;
    list-style-position: inside;
    font-weight: bold;
}


@media (min-width: 576px) {
    .modal-dialog {
      max-width: 400px;
    }
    .modal-dialog .modal-content {
      padding: 1rem;
    }
  }
  .modal-header .close {
    margin-top: -1.5rem !important;
    float: right !important;
    border: none!important;
    background: none;
    color:black;
    font-size: 1.5em!important;

  }
  
  .form-title {
    margin: -2rem 0rem 2rem;
  }
  
  .btn-round {
    border-radius: 3rem;
  }
  
  .delimiter {
    padding: 1rem;
  }
  
  .social-buttons .btn {
    margin: 0 0.5rem 1rem;
  }
  
  .signup-section {
    padding: 0.3rem 0rem;
  }

  .form-group{

    margin-bottom: 4%;
  }


 #mode input[type="radio"] {
    display: none;
  }
  #mode input[type="radio"] + div > span {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0);
    transition: all 0.5s ease-in-out;
  }
  #mode input[type="radio"] + div > span span {
    display: inline-block;
    position: absolute;
    left: 50%;
    text-align: center;
    color: black;
    transform: translateX(-50%);
    transform-origin: left;
    transition: all 0.5s ease-in-out;
  }
  #mode input[type="radio"] + div > span span:first-of-type {
    transform: rotateY(0deg) translateX(-50%);
  }
  #mode input[type="radio"] + div > span span:last-of-type {
    transform: rotateY(0deg) translateX(0%) scaleX(0.75) skew(23deg, 0deg);
  }
  #mode input[type="radio"]#fat:checked ~ div > span span:first-of-type {
    transform: rotateY(0deg) translateX(-50%);
  }
  #mode input[type="radio"]#fat:checked ~ div > span span:last-of-type {
    transform: rotateY(0deg) translateX(0%) scaleX(0.75) skew(23deg, 0deg);
  }
  #mode input[type="radio"]#fit:checked ~ div > span {
    margin: 0 -10px;
  }
  #mode input[type="radio"]#fit:checked ~ div > span span:first-of-type {
    transform: rotateY(90deg) translateX(-50%);
  }
  #mode input[type="radio"]#fit:checked ~ div > span span:last-of-type {
    transform: rotateY(0deg) translateX(-50%) scaleX(1) skew(0deg, 0deg);
  }
  #mode input[type="radio"] + div + div {
    width: 380px;
    margin-top: 10px;
  }
  #mode input[type="radio"] + div + div label {
    display: block;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.15s ease-in-out;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    width: 48%;
    font-size: 24px;
    cursor: pointer;
  }
  #mode input[type="radio"] + div + div label:first-child {
    float: left;
    box-shadow: inset 0 0 0 4px #558309, 0 15px 15px -10px rgba(0, 125, 225, 0.375);
  }
  #mode input[type="radio"] + div + div label:last-child {
    float: right;
  }
  #mode input[type="radio"]#fat:checked ~ div + div label:first-child {
    box-shadow: inset 0 0 0 4px #558309, 0 15px 15px -10px rgba(0, 125, 225, 0.375);
  }
  #mode input[type="radio"]#fat:checked ~ div + div label:last-child {
    box-shadow: inset 0 0 0 0px #558309, 0 10px 15px -20px rgba(21, 151, 255, 0);
  }
  #mode input[type="radio"]#fit:checked ~ div + div label:first-child {
    box-shadow: inset 0 0 0 0px #558309, 0 10px 15px -20px rgba(21, 151, 255, 0);
  }
  #mode input[type="radio"]#fit:checked ~ div + div label:last-child {
    box-shadow: inset 0 0 0 4px #558309, 0 15px 15px -10px rgba(0, 125, 225, 0.375);
  } 

  .pricing_shadow{

    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }