.button-plan-frequency-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.button-plan-frequency {
    border: none;
    margin: 10px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.button-plan-frequency-active {
    transition: all 0.3s ease-in-out;
    background: linear-gradient(180deg, transparent 92%, #5c4de5 92%);
}

.plans-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.plan-card {
    border-top: 4px solid #5c4de5;
    border-radius: 4px;
    padding: 20px;
    min-width: 220px;
    box-shadow: 4px 4px 6px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-red {
    color: #ec4758;
}

.plan-card-users-limit {
    font-size: 12px;
    font-weight: 600;
}

.plan-card-value-label {
    font-size: 12px;
    font-weight: 600;
}

.plan-card-value {
    font-size: 26px;
    font-weight: bold;
}

.plan-card-old-value{
    text-decoration: line-through;
    opacity: 0.9;
    color: #aaaaaa;
    font-size: 18px;
}

.plan-card-installments {
    width: 90%;
    text-align: center;
    margin: 10px auto;
    font-weight: bold;
    color: #fff;
    background-color: #43c25d;
    border-radius: 6px;
    padding: 8px 6px;
}

.plan-card-button {
    border-radius: 6px;
    background: #5c4de5;
    color: #fff;
    border: none;
    padding: 8px 0;
    margin-top: 10px;
    min-width: 85%;
    text-align: center;
    font-weight: normal;
}

.plan-card-button:hover {
    border-radius: 6px;
    background: #5c4de5;
    color: #fff;
}

.plan-description ul{
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-size: 12px;
    width: 90%;
}

.plan-description li{
    margin: 5px 0;
}

.card-my-plan__container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-content: flex-start;
    justify-content: flex-start;
}

.card-my-plan-details{
    border-top: 4px solid #5c4de5;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 4px 4px 6px 2px rgba(0, 0, 0, 0.1);
}

.card-my-plan-details__title {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #aaaaaa;
}

.card-my-plan-details__buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.card-my-plan-details__button {
    border-radius: 6px;
    background: #5c4de5;
    border: none;
    color: #ffffff;
    padding: 6px 24px;
}

.card-my-plan-details__renewal-date {
    font-weight: bolder;
    text-align: center;
    font-size: 17px;
}

.swiper {
    width: 100%;
    margin: 20px auto 60px auto;
    height: auto;
}

.swiper-button-next, .swiper-button-prev {
    color: #5c4de5 !important;
    font-size: 16px !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 30px !important;
}

.k-pricing-v1 {
    min-height: 515px !important;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@media screen and (max-width: 1024px) {
    .card-my-plan__container {
        justify-content: center;
    }
}
