.hello-cell-page .buy-link {
    display: flex;
    justify-content: center;
}

.hello-cell-page .buy-link a {
    max-width: 350px;
    width: 100%;
    background: #F0592B;
    color: white;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.hello-cell-adv {
    background: #FEFBF2;
    padding: 30px;
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-gap: 10px 50px;
    margin-bottom: 40px;
}

.hello-cell-adv__photo img {
    display: block;
}

.hello-cell-adv__content {
    padding: 20px 0;
}

.hello-cell-adv__header {
    margin-bottom: 10px;
    font-weight: bold;
}

.hello-cell-adv__body {
    margin-bottom: 10px;
}

.hello-cell-adv__body ul {
    padding-left: 20px;
    list-style: disc;
}

.hello-cell-adv__body li::marker {
    color: #e76520;
}

.hello-cell-adv__content * {
    line-height: 2rem;
}

.hello-cell-adv__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hello-cell-adv__footer-logos {
    display: flex;
    gap: 40px;
}

@media (max-width: 1199px) {
    .hello-cell-adv__footer {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .hello-cell-adv__content {
        padding: 5px 0;
    }
    .hello-cell-adv__photo {
        display: flex;
        justify-content: center;
    }
    .hello-cell-adv__photo img {
        width: 130px;
    }
    .hello-cell-adv {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

.wrapper-main .hello-cell-tabs > ul > li {
    width: 50%;
    text-align: center;
    color: black;
}

@media (max-width: 767px) {
    .wrapper-main .hello-cell-tabs > ul > li {
        width: 100%;
    }
}

.wrapper-main .hello-cell-tabs > ul {
    border-bottom: 1px solid #ebebeb;
    background-color: #ebebeb;
    margin-bottom: 20px;
}

.wrapper-main .hello-cell-tabs > ul > li > a {
    align-items: center;
}

.wrapper-main .hello-cell-tabs > ul > li.active {
    background-color: #333;
    color: white;
}

.wrapper-main .hello-cell-tabs > ul > li.active > a,
.wrapper-main .hello-cell-tabs > ul > li.active > a:hover,
.wrapper-main .hello-cell-tabs > ul > li.active > a:focus {
    border-bottom-color: #F0592B;
    font-weight: 600;
}

.wrapper-main .hello-cell-tabs > ul > li > a:hover,
.wrapper-main .hello-cell-tabs > ul > li > a:focus,
.wrapper-main .hello-cell-tabs > ul > li > a:active,
.wrapper-main .hello-cell-tabs > ul > li > a {
    color: inherit;
    padding: 15px 0;
    line-height: 25px;
    font-weight: 600;
}

.wrapper-main .hello-cell-tabs > ul > li [class^='ico'] {
    display: inline-block;
    width: 25px;
    height: 25px;
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: #333;
    vertical-align: bottom;
    margin-right: 5px;
}

.wrapper-main .hello-cell-tabs > ul > li.active [class^='ico'] {
    background-color: white;
}

.wrapper-main .hello-cell-tabs > ul > li .ico-iphone {
    mask-image: url(/images/hello-cell/iphone.svg);
}

.wrapper-main .hello-cell-tabs > ul > li .ico-android {
    mask-image: url(/images/hello-cell/android.svg);
}