
.pricing-table__feature-title {
    width: 33%;
  }
  
  .pricing-table__feature-info {
    width: 67%;
  }
  
  .pricing-table__per-plan-info {
    width: 100%;
  }
  
  .pricing-table__feature-title {
    display: flex;
    align-items: center;
    align-content: center;
  }
  
  .pricing-table__feature-description {
    font-size: 12px;
    color: white;
    background-color: rgba(255, 255, 255, 0.25);
  }
  
  .pricing-table__feature-group:first-of-type
    .pricing-table__group-title_wrapper
    > div:nth-child(3),
  .pricing-table__plan--pro,
  .pricing-table__per-plan-info_items > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .pricing-table__feature-title {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .pricing-table__feature-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .pricing-table__feature-row:hover {
    transition: all 0.33s ease-in-out;
    background-color: rgba(255, 255, 255, 0.025);
  }
  
  @media only screen and (max-width: 600px) {
    .pricing-table__feature {
        width: 100% !important;
    }
    .pricing-table__feature-title {
        width: 33% !important;
        min-width: 33% !important;
    }
  
    .pricing-table__feature-row {
        overflow: hidden !important;
        width: 100% !important;
    }
  
    .pricing-table__per-plan-info {
        width: 66% !important;
    }
  
    .pricing-table__per-plan-info_items {
        overflow-x: scroll;
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
    }
  
    .pricing-table__info {
        min-width: 80% !important;
        width: 80% !important;
    }
  
    .pricing-table__group-title_wrapper {
        display: flex !important;
        flex-direction: row !important;
    }
    .pricing-table__feature-description {
        display: none !important;
    }
  
    .pricing-table__header {
        display: flex !important;
        flex-direction: row !important;
    }
  
    .pricing-table__header div:nth-child(1) {
        min-width: 33%;
    }
    .pricing-table__header div:nth-child(2) {
        width: 66%;
               overflow-x: scroll;
        display: flex !important;
        justify-content: flex-start !important;
        
    }
  
    .pricing-table__plan {
        min-width: 80% !important;
        width: 80% !important;
    }
  }
  
  .pricing-table__header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-table__header div:nth-child(2) {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }
  
  .pricing-table__plan {
    width: 100%;
  }
  
  .pricing-table__header {
    background-color: #0a0a0a;
    position: sticky;
    top: var(--s-16);
  }


.pricing-toggle {
    backdrop-filter: blur(10px);
  }
  
  .toggle-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
  }
  
  .toggle-legend {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .toggle-container {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.8rem;
    overflow: hidden;
  }
  
  .toggle-options {
    display: flex;
    width: 100%;
  }
  
  .toggle-radio {
    position: absolute;
    opacity: 0;
  }
  
  .toggle-radio:checked + .toggle-label {
    background: #2d2d2f;
    color: #fff;
  }
  
  .toggle-label {
    flex: 1;
    padding: var(--s-1) var(--s-4);
    cursor: pointer;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.5);
  }
  