.section_pricing {
    width: 100%;
    height: auto;
    padding: 20vh 0;
    background-color: #fff;
    box-sizing: border-box;
    padding-top: 60px;
}


.item_pricing {
    width: 400px;
    height: 700px;
    margin: 10px;
    display: inline-block;
    flex-direction: column;
    background-color: #ececec;
    border-radius: 0px;
    border: 3px solid #474747;
    overflow: hidden;
    transition: ease-in 0.1s;
    box-shadow: none;
    scale: 1;
    margin-left: 10px;
    /*transition: transform 0.3s;*/
}

.item-content-pricing {
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 10px;
    max-width: 100%; /* Ensures the container takes full available width */
    margin-top: 10px;
}

.item_pricing:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.02);
}

.item_pricing img {
    width: 100%;
    padding-top: 30px;
    display: block;
    flex: 1;
    object-fit: cover;

}


.item_pricing a {
    color: #151515;
}

.item_pricing p {
    flex: 0;
}

#pricing_scroll {
    display: block;
}

@media (max-width: 768px) {
    .item_pricing {
        flex-basis: calc(50% - 20px);
    }
    .item_pricing{
        scale: 0.8;
        margin-left: -30px;
    }
}

@media (max-width: 480px) {
    .item_pricing {
        flex-basis: 100%;
    }
}

.features-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 0 20px 0;
}

.features-list li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 5px;
    line-height: 1.5;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    justify-items: center;
    align-items: center
}

.item-content h2 {
    font-family: 'Red Hat Display', monospace;

}

.svg-checkbox {
    display: inline-block;
    width: 19px;
    height: 19px;
    background-image: url('/products/localize/app/icons/ic_check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.feature_text {
    font-weight: 500;
    padding-left: 10px;
    font-family: "Red Hat Text", sans-serif;
}

.item-content-price {
    font-weight: 400;
    opacity: 0.7;
    font-size: 17px;
}

.item-content-divider {
    height: 2px;
    width: 100%;
    margin: auto;
    margin: 20px 0;
    background-color: black;
    opacity: 0.7;
}

.item-content-description {
    flex-grow: 1 !important;
    flex: 1 !important;
    word-break: break-word !important;
    white-space: pre-line !important;
}

.item-content h2,
.item-content-price,
.item-content-divider,
.features-list,
.btn_auth {
    flex-shrink: 0; /* Prevent these elements from shrinking */
}

.panel {
    background-color: #fff;
    padding: 10px 15px;
    margin: 0 100px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #c2c2c2;
}

.warn_container {
    background-color: #fff;
    padding: 10px 15px;
    margin: 0 100px;
    text-align: left;
    border-radius: 8px;
    width: 70%;
    border: 1px solid #c2c2c2;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-email {
    font-size: 18px;
    color: #474747;
    margin-left: 10px;
    margin-right: 20px; /* Add some space between email and button */
}

#logout-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#logout-button:hover {
    background-color: #0056b3;
}

.item_pricing_choose {
    width: 300px;
    height: 280px;
    margin: 10px;
    display: inline-block;
    flex-direction: column;
    background-color: #FAFAFA;
    border-radius: 20px;
    border: 3px solid #D6D6D6;
    overflow: hidden;
    transition: ease-in 0.1s;
    box-shadow: none;
    /*transition: transform 0.3s;*/
}

.btn_pay {
    background-color: #4169E1;
    border-radius: 50px;
    height: 50px;
    font-size: 16px;
}