.subscription-plans.plans-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.subscription-plans.plans-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.subscription-plans .single-plan-wrapper {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    z-index:1;
    text-align: center;
}
.single-plan-wrapper {
    max-width: 500px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.single-plan-title {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
    font-weight: bold;
    text-align: center
}

.single-plan-description {
    color: #666;
    margin-bottom: 15px;
}

.single-price-box {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #444;
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.single-price-box .price-1 {
    color: #e74c3c;
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 400;
    opacity: .75;
}

.single-price-box .price-2 {
    color: #27ae60;
    font-weight: bold;
}

.single-price-box .price-3 {
    color: #27ae60;
}

.single-price-box .price-4 {
    font-size: 14px;
    color: #888;
}

.btn-buy {
    width: fit-content;
    display: flex;
    padding: 0.3em 2rem;

    cursor: pointer;
    gap: 0.4rem;
    font-weight: 500;
    border-radius: 30px;
    text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
    background: linear-gradient(15deg, #880088, #aa2068, #cc3f47, #de6f3d, #f09f33, #de6f3d, #cc3f47, #aa2068, #880088) no-repeat;
    background-size: 300%;
    color: #fff;
    border: none;
    background-position: left center;
    box-shadow: 0 30px 10px -20px rgba(0, 0, 0, .2);
    transition: background .3s ease;
}

.btn-buy:hover {
    background-size: 320%;
    background-position: right center;
}

.single-image-holder {
    border: 3px solid #0e2c36;
    overflow: hidden;
    border-radius: 100px;
    box-shadow: 1px 5px 10px -3px #848484;
    width: 150px;
    height: 150px;
    margin: -75px auto 15px;
    background: white;
}

.subscription-plans.plans-vertical > div {
    width: 100%;
    max-width: unset;
    display: flex;
    align-items: center;
}

.subscription-plans.plans-vertical .single-price-box {
    margin: 0
}

.subscription-plans.plans-vertical .single-image-holder {
    border: 2px solid #0e2c36;
    border-radius: 15px;
    width: 200px;
    height: 200px;
    margin: 0 20px;
}

div:where(.swal2-container) {
    z-index: 99999 !important;
}
div:where(.swal2-container) div:where(.swal2-html-container) {
    font-size: 16px;
}div:where(.swal2-container) h2:where(.swal2-title) {
     padding: 0;
}