/* .pricing .list-info {
    background-color: white !important;
}

.pricing.special .list-info li {

    color: #414142 !important;
}

.pricing .list-info i {
    color: #414142 !important;

}

.pricing .list-info {
    padding: 1px 60px 40px;
} */
.pricing .list-info {
    background-color: white !important;
}

.pricing.special .list-info li {
    color: #414142 !important;
}

.pricing .list-info i {
    color: #414142 !important;
}

.pricing .list-info {
    padding: 5px 30px;
    /* Adjust overall padding */
}

/* Carousel Control Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    /* Adjust the size */
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    border: none;
    outline: none;
    background: none;
    border-radius: 50%;
}


/* Adjust arrow positions */
.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    /* Ensure only the icon shows */
    width: 40px;
    /* Increase the size of the arrow icon */
    height: 40px;
    border: none;
    /* Remove any default border */
    border-radius: 50%;
    /* Circular icon background */
}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"><path d="M6 0L2 4l4 4z"/></svg>');
    width: 30px;
    height: 30px;
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 8 8"><path d="M2 0l4 4-4 4z"/></svg>');
    width: 30px;
    height: 30px;
}

/* Ensuring last plan is fully visible */
.carousel-inner {
    padding: 2px 30px;
    /* Add padding to prevent cutting */
    overflow: hidden;
}

/* No layout changes for the first three plans */
.carousel-item .wrapper {
    max-width: 100%;
}

/* Fix button sizes for all plans */
.btn-default-yellow2-fill {
    width: 100%;
    background-color: #255aa8;
    color: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Plan Title (LITE, MEDIUM, PRO, PLATINUM) */
.titleplan {
    color: #255aa8;
    font-size: 1.2rem;
    /* Reduce this to make the plan names smaller */
    font-weight: bold;
    text-transform: uppercase;
    /* Keeps the uppercase formatting */
}

.price-container .price {
    font-size: 1.2rem;
    /* Main price */
    font-weight: bold;
    display: inline-block;
    /* Keep price block on the same line */
    white-space: nowrap;
    /* Prevent the text from wrapping */
}

.price-container .price sup.coin {
    font-size: 0.9rem;
    /* Keep dollar sign smaller */
    vertical-align: middle;
    /* Align it properly next to the price */
    margin-right: 3px;
    /* Add space between $ and the number */
}

.price-container .period {
    font-size: 0.9rem;
    /* Same size as dollar sign */
    font-weight: normal;
    margin-left: 3px;
    /* Add space between number and /month */
    display: inline;
    /* Ensure it stays on the same line */
    white-space: nowrap;
    /* Prevent /month from wrapping */
}

.price-content {
    width: fit-content;
    /* Adjust the content to fit the text */
    display: inline-block;
}

/* Reduce font size and padding for the specifications */
.pricing .list-info li {
    display: flex;
    /* Use Flexbox for alignment */
    align-items: center;
    /* Align items vertically */
    margin-bottom: 5px;
    /* Spacing between items */
    font-size: 0.9rem;
    /* Adjust font size as needed */
}

.pricing .list-info li i {

    margin-right: 5px;
    color: #255aa8 !important;
    font-size: 1.2rem;
}

/* Reduce the font size for the specification titles (e.g., DISK, EMAIL) */
.pricing .list-info div {
    display: flex;
    /* Keep the text and icon in one line */
    align-items: center;
    /* Center the text vertically with the icon */
    white-space: nowrap;
    /* Prevent text from wrapping */
}

/* Reduce the size of the icons */
.pricing .list-info i {
    margin-right: 8px;
    /* Space between icon and text */
    font-size: 1.2rem;
    /* Icon size */
    flex-shrink: 0;
    /* Prevent the icon from shrinking */
}

.price {
    font-size: 1.2rem;
    /* Main price */
    font-weight: bold;
    display: inline-block;
    /* Keep price block on the same line */
    white-space: nowrap;
    /* Prevent the text from wrapping */
    vertical-align: middle;
    /* Align dollar sign with the number */
}

.price sup.coin {
    font-size: 0.9rem;
    /* Adjusted size for the dollar sign */
    vertical-align: middle;
    /* Align the dollar sign with the number */
    margin-right: 3px;
    /* Space between $ and the number */
}

.plans.badge.feat {
    background-color: #255aa8;
    /* Ensures it applies the blue color */
    color: white !important;
    /* Ensure the text is white for contrast */
    padding: 5px 10px;
    /* Add some padding for a better look */
    border-radius: 10px;
    /* Round the corners */
    font-size: 0.9rem;
    /* Adjust font size if needed */
}




.highlighted-package {
    border: 3px solid #255aa8;
    /* Gold border for highlighting */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.highlighted-package:hover {
    transform: scale(1.05);
    /* Slightly enlarge on hover */
}

.recommended {
    position: absolute;
    /* Position the badge */
    top: -10px;
    /* Adjust to your liking */
    left: 10px;
    /* Adjust to your liking */
    background-color: #255aa8;
    /* Background color for the badge */
    color: #fff;
    /* Text color */
    padding: 5px 10px;
    /* Padding */
    border-radius: 5px;
    /* Rounded corners */
    font-weight: bold;
    /* Bold text */
    font-size: 0.9em;
    /* Slightly smaller font */
    z-index: 1;
    /* Ensure it sits on top */
}