.bookeasy-appBlock {
    width: 100%;
    max-height: 400px;
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.bookeasy-appBlock-image {
    width: 50%;
}

.bookeasy-appBlock-details {
    gap: 10px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px;

}

.bookeasy-appBlock-image img {
    height: 400px;
    width: 100%;
}

.bookeasy-appBlock-details .bookeasy-appBlock-button,
.bookeasy-appBlock-details .description {
    width: 350px
}

.bookeasy-appBlock-details .title {
    margin: 0px;
    font-size: 35px;
    font-weight: 600;
}

.bookeasy-appBlock-details .description {
    max-height: 200px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    /* Adjust the number of lines you want to display */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    scrollbar-width: thin;
}