.details {
    display: none;
    max-width: 1432px;
    width: -webkit-fill-available;
    padding: 40px 24px 16px 24px;
    box-sizing: content-box;
    border-radius: 20px;
    margin: 8px 16px 32px 16px;
}

.details-wrapper {
    width: 100%;
}

.details-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.details-separator {
    width: 100vw;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 8px 0px rgba(49, 49, 52, 0.15);


}

.details-title {

}

.details-content {
    width: 100%;
    display: flex;
    gap: 32px;
}

.details-content .details-col:first-child p {
    text-decoration-style: dashed;
}

.details-col {
    gap: 8px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

div.details-col:first-child {
    min-width: 400px;
}

.details-col a {
    width: fit-content;
    padding: 8px 20px 8px 20px;
    border-radius: 24px;
}

.details-table {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid #EAE9E6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
}

.details-wrapper .details-table.top-table {
    margin-top: 8px;
}

.details-table-header {
    background: #F8F7F5;
}

.details-table-header, .details-table-general {
    display: flex;
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
}

.details-table-general:not(:last-child) {
    border-bottom: 1px solid #EAE9E6;
}

.details-table.ai-table .details-table-header {
    background: linear-gradient(122.3deg, #D5DEFF 16.51%, #FFDDFE 93.76%);
}

.details-table-ai-container {
    box-shadow: 0 0 10px rgba(87, 124, 255, 0.5);
    background: linear-gradient(122.3deg, #577CFF 16.51%, #FF75F9 93.76%);
    border-radius: 8px; /* Adjust the border radius as needed */
    padding: 1px;
}

.details-table.ai-table  {
    display: block;
    margin-bottom: 0;
    border-radius: 7px;
    background: #FFFFFF;
}


.plan-feature-badge {
    display: inline-block;
    padding: 2px 8px 2px 8px;
    border-radius: 23px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    margin-left: 12px;
}
.plan-feature-soon {
    background: #0E8ADC;
}
.plan-feature-free {
    background: #C25ED6;
}
.plan-feature-new {
    background: #029941;
}
@media only screen and (min-width: 992px) {
    .details {
        display: flex;
    }
}