.shop-way {}

.shop-way__item {
    margin-bottom: .5rem;
}

.way-tab {
    display: flex;
    gap: .4rem;
}

.way-tab__item {
    overflow: hidden;
    /*  */
    flex: 1 1 100%;
    /*  */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*  */
    min-height: 3rem;
    /*  */
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    /*  */
    color: var(--text-white);
}

.way-tab__item:first-child {
    background: var(--bg-blue);
}

.way-tab__item:nth-child(2) {
    background: var(--bg-yellow);
}

.way-tab__item_radius-top {
    border-radius: 8px 8px 0 0;
}

.way-tab__item_radius-all {
    border-radius: 8px;
}

.way-tab__google-link {
    display: flex;
    align-items: center;
    justify-content: center;
    /*  */
    width: 100%;
    height: 100%;
    /*  */
    background: var(--bg-green);
}

.way-opt {
    display: none;
    opacity: 0;
    transition: .3s;
}

.way-opt:nth-of-type(1) {
    display: block;
    opacity: 1;
    background: var(--bg-blue) !important;
}

.way-opt:nth-of-type(2) {
    background: var(--bg-yellow) !important;
}