section#price-hero .ellipse-44 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(rgba(5, 167, 170, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
    width: 800px;
    height: 400px;
    filter: blur(100px);
}

section#profit .ellipse-45 {
    position: absolute;
    top: 5%;
    left: 0;

    width: 600px;
    height: 180px;

    background: rgba(5, 167, 170, 0.7);
    border-radius: 100%;
    filter: blur(300px);
}

.price-list .card {
    background: rgba(255, 255, 255, 0.2);
    transition: scale .25s ease-out;
}

.price-list .card:hover {
    scale: 1.1;
    background: linear-gradient(to bottom left, rgba(0, 250, 255, 1) 0%, rgba(5, 167, 170, 1) 42%, rgba(56, 115, 167, 1) 100%);
}

.card-price {
    margin: 5px;
    color: var(--color-primary);
}

.card-price .card-price-title,
.card-price .card-price-subtitle {
    color: var(--color-primary);
}

.card-price .card-price-title {
    margin-bottom: 5px;
}

.card-price .card-price-subtitle {
    font-size: .65rem;
}

.card:hover .card-price-title,
.card:hover .card-price-subtitle {
    color: var(--bg-color);
}

.card-price-description {
    background: rgba(255, 255, 255, .5);
}

.card-price-description p {
    font-size: .75rem;
    color: var(--color-primary);
}

.card:hover .card-price-description p {
    color: var(--bg-color);
}

.card-price-description .user-count {
    font-size: .75rem;
}

.card-price-description .user-count>* {
    color: var(--color-primary);
}

.card:hover .card-price-description .user-count>* {
    color: var(--bg-color);
}

.card-price-description .price-per-month {
    font-size: .75rem;
}

.card-price-description .price-per-month div {
    color: var(--color-primary);
}

.card:hover .card-price-description .price-per-month div {
    color: var(--bg-color);
}

.card-price-description .price-per-month div.slash {
    color: var(--color-primary-op50);
    text-decoration: line-through;
}

.card:hover .card-price-description .price-per-month div.slash {
    color: var(--bg-color-5);
}

.card-price-description .price-per-month div.slash {
    color: var(--color-primary-op50);
    text-decoration: line-through;
}

.card-price-description a.add-ons {
    color: var(--color-primary);
    text-decoration: none;
    transition: color .25s ease-out;
    font-size: .75rem;
}

.card-price-description a.add-ons:hover {
    color: var(--color-primary-dark);
}

.card:hover .card-price-description a.add-ons {
    color: var(--bg-color);
}

.card:hover .card-price-description a.add-ons:hover {
    color: var(--color-primary-dark);
}

/* Profit */

.profit-item .profit-item-icon {
    padding: 20px;
    background: linear-gradient(to bottom left, rgba(0, 250, 255, 1) 0%, rgba(5, 167, 170, 1) 42%, rgba(56, 115, 167, 1) 100%);
    border-radius: 100%;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    margin-right: 24px;
}

.profit-item .profit-item-icon img {
    width: 30px;
    height: 30px;
}

.profit-item .profit-item-title {
    color: var(--color-primary);
    font-weight: 800;
}

.profit-list div:nth-child(even) .profit-item .profit-item-title {
    color: rgba(56, 115, 167, 1) !important;
}

.profit-item .profit-item-description {
    font-size: .75rem;
}

.order-dialog {
    position: relative;
    font-size: 18px;

    width: 60%;

    overflow: hidden;

    border-radius: 1rem;
    
    padding: 0;
    border: none;
}

.order-dialog:focus-visible {
    outline: none;
}

.order-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  backdrop-filter: blur(5px); /* Apply a blur effect to content behind the backdrop */
}

.order-dialog .success-alert {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}

.order-dialog button {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #ffffff;
    color: var(--color-primary);
    border: none;
    border-radius: 100%;
    width: 25px;
    height: 25px;
}
@media screen and (max-width: 767px) {
    .order-dialog {
        font-size: 12px;

        width: 90%;
    }
}