.select_bots {
    opacity: 0;
    animation: bot1 .2s forwards linear;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 80%;
    max-width: 1500px;
}

.select_bots svg {
    width: 60px;
    height: auto;
    margin: 0 auto;
}

.visible-bots {
    opacity: 1;
}

@keyframes bot1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.select_bot {
    width: 33%;
    border-radius: 1rem;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.selected_bot {
    border: 2px solid #1A6DE0FF;
    /*box-shadow: 0 0 30px -8px #1A6DE0FF;*/
}

.hide_border {
    border: none;
    padding: 0;
}

.select_packages {
    width: 100%;
    margin-top: 1.5rem;
}

.switch_plan {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    max-width: 100%;
    height: 30px;
    background: #dedede;
    margin-top: 1rem;
    border: 1px solid #dedede;
}

.switch_plan span {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}

.switch_plan span i {
    color: #13c8a4;
    padding-left: 5px;
    font-style: normal;
    font-weight: 500;
}

.selected_plan {
    background: #fff;
    border: 1px solid #1a6de0;
    color: #1a6de0;
}

.price_year {
    display: none;
    font-size: 13px;
}

.select_package {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
}

.package {
    width: 32%;
    max-width: 400px;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 2px solid #afafaf;
    font-size: 18px;
    color: #6f6f6f;
    font-family: system-ui !important;
    position: relative;
    min-height: 650px;
}

.package.selected_package {
    border: 2px solid rgb(19, 168, 161);
    box-shadow: 0 0 30px -8px rgb(19, 168, 161);
}

.price {
    font-size: 28px;
    color: #1c1c28;
    font-weight: 500;
    margin: .5rem auto;
}

.package ul {
    text-align: left;
    font-size: 16px;
    color: #4b5563;
    margin-top: 1rem;
    width: 100%;
    padding-left: 1rem;
}

.package ul li {
    margin-bottom: .5rem;
    position: relative;
}

.package ul li:before {
    content: "";
    display: block;
    background: #1A6DE0FF;
    width: 5px;
    height: 5px;
    position: absolute;
    left: -14px;
    top: 11px;
    border-radius: 50%;
}

.package .label {
    position: absolute;
    border-radius: .5rem;
    background: rgb(19, 168, 161);
    color: #fff;
    padding: 0.3rem 1.2rem;
    top: -15px;
    right: 16px;
}

.package.bestseller .label {
    background: #2962ff;
}

.package.bestseller {
    border: 2px solid #2962ff;
    box-shadow: 0 0 30px -8px #2962ff;
}

.package a {
    position: absolute;
    bottom: 0;
    text-decoration: none !important;
}

.button_package {
    font-size: 18px;
    border-radius: .5rem;
    border: 2px solid #6f6f6f;
    padding: 0.3rem 1rem;
    color: #6f6f6f;
    cursor: pointer;
}

.button_package:hover {
    color: #1A6DE0FF;
    border: 2px solid #1A6DE0FF;
}

.plans__wrap {
    box-shadow: none;
    background: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
}

.m-section__body {
    width: 100%;
}

.hide_border {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 16px;
}

@media (min-width: 1600px) {
    main {
        margin-top: -3rem;
    }
}

@media (max-width: 1023px) {
    .package {
        width: 33%;
        padding: 0 .5rem .2rem;
        min-height: 620px;
        padding-top: 1.5rem;
    }

    .hide_border {
        padding: 0 .3rem;
    }

    h3 {
        font-size: 40px;
        margin-bottom: 0.5rem;
        margin-top: -2rem;
    }

    .package ul li {
        margin-bottom: .3rem;
    }

    .price {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .select_package {
        align-items: center;
        justify-content: flex-start;
        flex-direction: column-reverse;
    }

    .package {
        width: 100%;
    }

    .package {
        padding: 1rem .5rem 4rem;
        min-height: auto;
        margin-bottom: 1.5rem;
    }

    .select_bot {
        font-size: 12px;
        padding: 0 .3rem .3rem;
    }

    .n-card__select_bot {
        padding: .5rem;
    }

    .switch_plan {
        margin-top: .75rem;
    }

    .select_packages {
        margin-top: 1.5rem;
    }

    h3 {
        font-size: 32px;
    }

    .package ul li:before {
        top: 9px;
    }
}

@media (max-width: 329px) {
    h3 {
        font-size: 28px;
    }
}