.mb-toggleBtn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.mb-toggleBtn p {
    font-size: 22px;
    font-weight: 600;
    opacity: .4;
}

.mb-toggleBtn p.on {
    opacity: 1;
}

.mb-toggleBtn h5 {
    color: var(--main-color);
    padding: 4px 6px;
    font-size: 20px;
    border-radius: 3px;
    background-color: #e6ff6525;
    margin-left: 10px;
}

.toggleBtn {
    width: 58px;
    padding: 4px;
    display: flex;
    justify-content: flex-end;
    border-radius: 50px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, .3);
    cursor: pointer;
}
.toggleBtn.off {
    justify-content: flex-start;
    background-color: transparent;
}

.toggleBtn .circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
}

.mb-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mb-box {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: rgba(255, 255, 255, .05);
    border-radius: 7px;
    overflow: hidden;
}
.mb-box:hover {
    background-color: rgba(255, 255, 255, .07);
}
.mb-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 8px;
}
.mb-box.silver::before {
    background-color: rgb(148, 148, 148);
}
.mb-box.gold::before {
    background-color: rgb(155, 120, 56);
}
.mb-box.vip::before {
    background-color: rgb(138, 0, 0);
}
.mb-box.prime::before {
    background-color: rgb(76, 0, 255);
}

.mb-box-top {
    padding: 30px 0 20px 0;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.mb-box-price {
    width: 100%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.foryear {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.foryear.hide {
    display: none;
}

.foryear p {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
}

.foryear em {
    color: #ffffff50;
    font-size: 16px;
    font-style: normal;
    text-decoration: line-through;
}

.formonth {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.formonth .price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.formonth .price span {
    font-size: 20px;
}

.formonth .price h5 {
    font-size: 32px;
}

.formonth p {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}

.mb-box-list {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 60px;
}

.mb-box-list li {
    font-size: 16px;
    line-height: 1.6;
    list-style-type: '✅  ';
}


/*==================================================*/
@media (max-width: 1250px) {
    .mb-box-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 10px;
    }
}


@media (max-width: 950px) {
    .mb-toggleBtn {
        margin-top: 60px;
    }
}


@media (max-width: 650px) {
    .mb-box-wrapper {
        width: 70%;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}


@media (max-width: 550px) {
    .mb-box-wrapper {
        width: 85%;
    }
    
    .mb-toggleBtn {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .mb-toggleBtn p {
        font-size: 16px;
    }

    .mb-toggleBtn h5 {
        padding: 3px 5px;
        font-size: 16px;
        margin-left: 5px;
    }

    .toggleBtn {
        width: 42px;
        padding: 3px;
    }

    .toggleBtn .circle {
        width: 14px;
        height: 14px;
    }
}


@media (max-width: 450px) {
    .mb-box-wrapper {
        width: 95%;
    }
    
    .mb-box::before {
        height: 6px;
    }
    
    .mb-box-top {
        padding: 16px 0 10px 0;
        font-size: 18px;
    }
    
    .mb-box-price {
        padding: 35px;
    }

    .mb-box-list {
        padding: 20px;
        padding-left: 40px;
        gap: 10px;
    }

    .mb-box-list li {
        font-size: 14px;
    }
}