.the_new, .adapt_menu, .adapt_menu2 {
    display: none
}

:root {
    --mm-ocd-width: 80%;
    --mm-ocd-min-width: 200px;
    --mm-ocd-max-width: 440px
}

body.mm-ocd-opened {
    overflow-y: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

.mm-ocd {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    background: rgba(0, 0, 0, 0);
    -webkit-transition-property: bottom, background-color;
    -o-transition-property: bottom, background-color;
    transition-property: bottom, background-color;
    -webkit-transition-duration: 0s, .3s;
    -o-transition-duration: 0s, .3s;
    transition-duration: 0s, .3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: .45s, .15s;
    -o-transition-delay: .45s, .15s;
    transition-delay: .45s, .15s
}

.mm-ocd--open {
    bottom: 0;
    background: rgba(0, 0, 0, .25);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.mm-ocd__content {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 80%;
    width: var(--mm-ocd-width);
    min-width: 200px;
    min-width: var(--mm-ocd-min-width);
    max-width: 440px;
    max-width: var(--mm-ocd-max-width);
    background: #fff;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

.mm-ocd--left .mm-ocd__content {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.mm-ocd--right .mm-ocd__content {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.mm-ocd--open .mm-ocd__content {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}


.mm-ocd__backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: calc(100% - 80%);
    width: calc(100% - var(--mm-ocd-width));
    min-width: calc(100% - 440px);
    min-width: calc(100% - var(--mm-ocd-max-width));
    max-width: calc(100% - 200px);
    max-width: calc(100% - var(--mm-ocd-min-width));
    background: rgba(3, 2, 1, 0)
}

.mm-ocd--left .mm-ocd__backdrop {
    right: 0
}

.mm-ocd--right .mm-ocd__backdrop {
    left: 0
}

.mm-spn, .mm-spn a, .mm-spn li, .mm-spn span, .mm-spn ul {
    display: block;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:root {
    --mm-spn-item-height: 50px;
    --mm-spn-item-indent: 20px;
    --mm-spn-line-height: 24px
}

.mm-spn {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.mm-spn ul {
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    left: 100%;
    bottom: 0;
    z-index: 2;
    width: 130%;
    padding-right: 30%;
    line-height: 24px;
    line-height: var(--mm-spn-line-height);
    overflow: visible;
    overflow-y: auto;
    background: inherit;
    -webkit-transition: left .3s ease 0s;
    -o-transition: left .3s ease 0s;
    transition: left .3s ease 0s;
    cursor: default
}

.mm-spn ul:after {
    content: '';
    display: block;
    height: 50px;
    height: var(--mm-spn-item-height)
}

.mm-spn > ul {
    left: 0
}

.mm-spn ul.mm-spn--open {
    left: 0
}

.mm-spn ul.mm-spn--parent {
    left: -30%;
    overflow-y: hidden
}

.mm-spn li {
    position: relative;
    background: inherit;
    cursor: pointer
}

.mm-spn li:before {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    top: calc(var(--mm-spn-item-height) / 2);
    right: 25px;
    right: calc(var(--mm-spn-item-height) / 2);
    z-index: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(45deg) translate(0, -50%);
    -ms-transform: rotate(45deg) translate(0, -50%);
    transform: rotate(45deg) translate(0, -50%);
    opacity: .4
}

.mm-spn li:after {
    content: '';
    display: block;
    margin-left: 20px;
    margin-left: var(--mm-spn-item-indent);
    border-top: 1px solid;
    opacity: .15
}

.mm-spn a, .mm-spn span {
    position: relative;
    z-index: 1;
    padding: 13px 20px;
    padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height)) / 2) var(--mm-spn-item-indent)
}

.mm-spn a {
    background: inherit;
    color: inherit;
    text-decoration: none;
    display: flex;
}

.mm-spn a:not(:last-child) {
    width: calc(100% - 50px);
    width: calc(100% - var(--mm-spn-item-height))
}

.mm-spn a:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-right: 1px solid;
    opacity: .15
}

.mm-spn span {
    background: 0 0
}

.mm-spn.mm-spn--navbar {
    cursor: pointer
}

.mm-spn.mm-spn--navbar:before {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    top: calc(var(--mm-spn-item-height) / 2);
    left: 20px;
    left: var(--mm-spn-item-indent);
    width: 10px;
    height: 10px;
    margin-top: 2px;
    border-top: 2px solid;
    border-left: 2px solid;
    -webkit-transform: rotate(-45deg) translate(50%, -50%);
    -ms-transform: rotate(-45deg) translate(50%, -50%);
    transform: rotate(-45deg) translate(50%, -50%);
    opacity: .4
}

.mm-spn.mm-spn--navbar.mm-spn--main {
    cursor: default
}

.mm-spn.mm-spn--navbar.mm-spn--main:before {
    content: none;
    display: none
}

.mm-spn.mm-spn--navbar:after {
    content: attr(data-mm-spn-title);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    height: var(--mm-spn-item-height);
    padding: 0 40px;
    padding: 0 calc(var(--mm-spn-item-indent) * 2);
    line-height: 50px;
    line-height: var(--mm-spn-item-height);
    opacity: .4;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.mm-spn.mm-spn--navbar.mm-spn--main:after {
    padding-left: 20px;
    padding-left: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--navbar ul {
    top: 51px;
    top: calc(var(--mm-spn-item-height) + 1px)
}

.mm-spn.mm-spn--navbar ul:before {
    content: '';
    display: block;
    position: fixed;
    top: inherit;
    z-index: 2;
    width: 100%;
    border-top: 1px solid currentColor;
    opacity: .15
}

.mm-spn.mm-spn--light {
    color: #444;
    background: #f3f3f3
}

.mm-spn.mm-spn--dark {
    color: #ddd;
    background: #333
}

.mm-spn.mm-spn--vertical {
    overflow-y: auto
}

.mm-spn.mm-spn--vertical ul {
    width: 100%;
    padding-right: 0;
    position: static
}

.mm-spn.mm-spn--vertical ul ul {
    display: none;
    padding-left: 20px;
    padding-left: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--vertical ul ul:after {
    height: 25px;
    height: calc(var(--mm-spn-item-height) / 2)
}

.mm-spn.mm-spn--vertical ul.mm-spn--open {
    display: block
}

.mm-spn.mm-spn--vertical li.mm-spn--open:before {
    -webkit-transform: rotate(135deg) translate(-50%, 0);
    -ms-transform: rotate(135deg) translate(-50%, 0);
    transform: rotate(135deg) translate(-50%, 0)
}

.mm-spn.mm-spn--vertical ul ul li:last-child:after {
    content: none;
    display: none
}

.banner_border textarea.text {
    display: block;
    box-shadow: none;
    width: 100%;
    padding: 0;
    border: 1px solid transparent;
    border-radius: initial;
    text-align: center;
    background: #fff;
    font-family: Tahoma, sans-serif;
    min-height: 0;
    hieght: 24px
}

.banner_border textarea.text:nth-of-type(1) {
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: 700;
    color: #900;
    height: 37px
}

.banner_border textarea.text.bp-html-title-field:placeholder-shown, .banner_border textarea.text:focus {
    box-shadow: none;
    background: transparent;
    border: 1px solid #80b2cf
}

@media (max-width: 1366px) {
    #widget_methods .information.banner .btn.blue{
        display: inline-flex;
        grid-gap: 10px;
    }

    #header-wrapper #header #nav {
        display: grid;
        grid-template-columns: 427px 139px 180px 56.16px;
        grid-template-areas: 'links main-menu account languages';
    }

    #header-wrapper #header #nav:nth-child(1){
        grid-area: link;
    }
    #header-wrapper #header #nav #main-menu{
        grid-area: main-menu;
    }

    #header-wrapper #header #nav .flex-column-tm:nth-child(2){
        grid-area: languages;
    }

    #header-wrapper #header #nav .flex-column-tm:nth-child(2) .language-current {
        display: flex;
        align-content: center;
    }
    #header-wrapper #header #nav .flex-column-tm:nth-child(2) .language-current i.fa {
        line-height: 49px!important;
    }

    #header-wrapper #header #nav .flex-column-tm:nth-child(3){
        grid-area: account;
    }

    #navCabinet .translate .hover {
        left: -125px;
    }

    [id*="cont-btn-"] {
        min-width: 100%;
    }
}

@media (min-width: 901px) and (max-width: 1299px) {
    body, html {
        min-width: 769px;
        margin: 0
    }

    body div {
        max-width: 100%;
        box-sizing: border-box
    }

    body img {
        max-width: 100%
    }

    body embed, body iframe, body video {
        max-width: 100%
    }

    #main_col_right {
        width: calc(100% - 325px)
    }

    #logo {
        margin: 0 0 0 15px
    }

    #nav {
        width: auto;
        margin: 0
    }

    .profile_down {
        min-width: 220px
    }

    div.width-100 {
        max-width: 90%
    }

    .description-for-types .flex > .flex-column {
        width: 300px
    }

    .information {
        width: 100%
    }

    #online_stat .line {
        line-height: 24px;
        min-height: 0;
        padding-bottom: 10px;
        padding-top: 10px;
        white-space: inherit
    }

    #cpa-items .item > .col-2 .title {
        width: auto
    }


    .advert-list .flex .flex-column {
        max-width: 787px;
    }

    .advert-list .flex .flex-column .wrapper-button {
        display: grid;
        grid-auto-rows: min-content;
        grid-template-columns: minmax(223px, 395px);
    }

    .advert-list .flex .flex-column .wrapper-button .advert-btn {
        width: auto;
        max-width: 395px;
    }

    .advert-btn .wrapper-main .box-left .text-box {
        font-size: 14px;
    }

    .advert-btn .wrapper-main .box-left .text-box p {
        line-height: 16px;
    }

    .advert-btn .wrapper-main .box-left {
        min-width: 226.89px;
    }

    [data-block="tasks"] .advert-btn .wrapper-main .box-left,
    .advert-btn .wrapper-main .box-left span {
        overflow: hidden;
    }


    [data-block="tasks"] .advert-btn .wrapper-main .box-left,
    .advert-btn .wrapper-main .box-left span p {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    #cont-tip-cell-trophies-clock {
        width: 304px;
    }

    #cont-tip-cell-premium_free-help {
        width: 208px;
    }

    #cont-tip-cell-premium_free-progress {
        width: 215px;
    }
    #cont-tip-cell-premium_free-clock {
        left: 0!important;
        width: 300px;
    }

    #cont-tip-cell-premium_free-clock .tip_outer {
        left: 1068px!important;
    }

    #cont-tip-cell-premium_free-clock.tip_mod_container[data-arrow="top"].style_black:after {
        left: 1145px;
    }

}

@media (max-width: 1195px) {
    #widget_all .widget_content .cells:nth-child(2) #widget-trophies,
    #widget_all .widget_content .cells:nth-child(2) #widget-premium_free {
        width: 100% !important;
        height: fit-content;
    }

    #widget-trophies.cell {
        width: 100%;
        margin: 0 0 10px
    }

    #widget_all .widget_content .cells:nth-child(2) {
        flex-direction: column;
    }

    #widget_all .widget_content .cells:nth-child(2) #widget-premium_free {
        margin: 0 !important;
    }



    /*Подсказки в виджетах в разеделе заработка*/
    #tip-cell-trophies-clock {
        position: relative;
    }

    #cont-tip-cell-trophies-clock {
        left: 950px!important;
        width: 304px;
    }

    #cont-tip-cell-trophies-clock.tip_mod_container[data-arrow="top"].style_black:after {
        margin-left: 30%;
    }

    #tip-cell-premium_free-help {
        position: relative;
    }
    #cont-tip-cell-premium_free-help {
        width: 208px;
    }

    #cont-tip-cell-premium_free-help.tip_mod_container[data-arrow="top"].style_black:after {
        margin-left: -4px;
    }

    #tip-cell-premium_free-progress {
        position: relative;
    }
    #cont-tip-cell-premium_free-progress {
        width: 215px;
        left: 647px;
    }

    #cont-tip-cell-premium_free-progress.tip_mod_container[data-arrow="top"].style_black:after {
        margin-left: -5%;
    }

    #tip-cell-premium_free-clock {
        position: relative;
    }
    #cont-tip-cell-premium_free-clock {
        left: 1000px!important;
        width: 700px;
    }
    #cont-tip-cell-premium_free-clock.tip_mod_container[data-arrow="top"].style_black:after {
        margin-left: 52px;
    }
}

@media (min-width: 901px) and (max-width: 1099px) {
    #header-wrapper .container .row,
    #header-wrapper .container .row > * {
        margin: 0;
        padding: 0;
    }

    #header {
        display: flex;
    }
    #header #nav > * {
        margin: 0;
        padding: 0;
    }

    #header #nav > ul .ext-menu {
        margin-left: 24px;
    }

    #header #nav > ul > li {
        padding: 0 8px;
        margin: 0;
    }
    #header-wrapper #header #nav {
        grid-template-columns: 409px 116px 126px 56.16px;
        margin-left: 10px;
    }

    #header #nav .profile {
        margin-left: 0px;
    }

    .newad_btn {
        width: auto;
        padding: 11px 10px 10px
    }

    .description-for-types .flex {
        flex-wrap: wrap
    }

    .description-for-types .flex > .flex-column {
        width: 100%;
        margin: 0;
        display: flex;
        overflow-x: scroll;
        white-space: nowrap
    }

    .description-for-types .flex > .flex-column > div:last-child {
        display: none
    }

    .newad_btn .block-left {
        float: none;
        display: block
    }

    .newad_btn i.icon {
        float: none;
        vertical-align: top
    }

    #add_choose .information.banner:after {
        top: -11px;
        left: 40px;
        transform: rotate(90deg)
    }

    #add_choose > .headline .block-left {
        width: auto
    }
}

@media (max-width: 1023px) {
    body, html {
        min-width: 210px;
        margin: 0;
        padding: 0
    }

    body div {
        max-width: 100%;
        box-sizing: border-box
    }

    body img {
        max-width: 100%
    }

    body embed, body iframe, body video {
        max-width: 100%;
        height: auto
    }

    .form input.text, .form select, .form textarea, form input.text, form select, form textarea {
        font-size: 16px
    }

    .newhead {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        padding: 5px;
        background: #fff;
        box-shadow: 0 4px 8px -3px rgba(17, 17, 17, .06);
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .logo_new img {
        width: 100px;
        display: inline-block;
        vertical-align: middle
    }

    .newlinks {
        padding: 0 10px
    }

    .row {
        max-width: none;
        margin-left: -15px
    }

    div.width-100 {
        max-width: 90%
    }

    #main_col_right {
        width: 100%;
        padding: 0 10px
    }

    .headline {
        padding: 15px 10px;
        font-size: 14px
    }

    .headline h1 {
        font-size: 14px
    }

    #widget_free_views_reg .headline {
        padding: 15px 45px 15px 10px
    }

    #widget_free_views_reg .headline .block-right {
        position: absolute !important;
        top: 20px;
        right: 10px
    }

    #widget_free_views_reg .headline .block-left {
        width: 100%
    }

    #widget_free_views_reg .headline .btn-close {
        position: static
    }

    #widget_free_views_reg .headline .expand {
        margin: 0
    }

    .widget_content {
        padding: 0 10px 30px
    }

    .newad_btn {
        width: auto;
        padding: 11px 10px 10px
    }

    .description-for-types .flex, .flex.methods_profit {
        flex-wrap: wrap
    }

    .description-for-types .flex > .flex-column, .flex.methods_profit > .flex-column {
        margin: 0;
        display: flex;
        overflow-x: scroll;
        white-space: nowrap
    }

    .description-for-types .flex > .flex-column > div:last-child, .flex.methods_profit > .flex-column > div:last-child {
        display: none
    }

    .newad_btn .block-left {
        float: none;
        display: block
    }

    .newad_btn i.icon {
        float: none;
        vertical-align: top
    }

    .information:after {
        top: -11px !important;
        left: 40px !important;
        transform: rotate(90deg)
    }

    #add_choose > .headline .block-left {
        width: auto
    }

    #online_stat .line {
        line-height: 24px;
        min-height: 0;
        padding-bottom: 10px;
        padding-top: 10px;
        white-space: inherit
    }

    #footer .footer-content {
        margin: 0 -15px !important;
        height: auto;
        padding: 15px 0;
        text-align: center;
        width: auto;
        max-width: none
    }

    #footer .clr_40, #footer .clr_10 {
        height: auto
    }

    #information iframe {
        height: auto
    }

    .information {
        width: 100%
    }

    img.w100 {
        width: auto !important
    }

    .user_lk {
        padding: 0 10px
    }

    .user_lk > ul {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        padding: 10px;
        font-size: 14px;
        display: none;
        box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.5)
    }

    .user_lk .img_profile {
        width: 30px;
        height: 30px;
        cursor: pointer;
        background: url(//static.surfearner.com/css/images/avatar_male.svg)
    }

    .user_lk > ul:after {
        content: ' ';
        width: 15px;
        height: 15px;
        background: url(//surfearner.com/images/svg/angle_up.svg);
        position: absolute;
        top: -8px;
        right: 22px
    }

    .user_lk > ul li {
        line-height: 30px
    }

    .user_lk > ul a {
        color: #333;
        text-decoration: none
    }

    .user_lk > ul a i:before {
        color: #C3C3C3;
        font-size: 16px
    }

    .wrap_country_active > .row {
        margin-left: 0 !important
    }

    #cpa-items .item > .col-2 .title {
        width: auto
    }

    .widget.cell {
        width: 100%;
        margin: 0 0 10px;
        height: auto;
        min-height: 80px
    }

    .all_services #tabs .menu {
        display: flex;
        overflow-x: scroll
    }

    .all_services a.item {
        width: auto
    }

    .all_services .ui.tab.segment {
        padding: 10px
    }

    .all_services .payment_icon {
        margin: 0 5px 10px 0
    }

    .adv-item .block-down {
        padding: 20px 10px
    }

    .adv-item .block-down > .row {
        margin-left: 0
    }

    .adv-item .row-1 .aid-name-input {
        max-width: 100%
    }

    .cpa-items.type-11 div.item {
        margin: 0 auto !important;
        height: auto !important;
        padding: 10px !important
    }

    #payment-grid, #widget_prize_wins, .table_ref_all, .tablewrap, #bonus-history-grid, #top-by-month-table-wrapper, .your-referrals {
        width: 100% !important;
        display: block;
        overflow-x: auto;
        height: auto !important;
        -webkit-overflow-scrolling: touch
    }

    .icon.icon_premium_1 + .info.block-left, .icon.icon_premium_2 + .info.block-left, .icon.icon_premium_3 + .info.block-left, .icon.icon_premium_4 + .info.block-left, .icon.icon_premium_5 + .info.block-left, .icon.icon_premium_6 + .info.block-left, .icon.icon_premium_7 + .info.block-left, .icon.icon_premium_8 + .info.block-left, .icon.icon_premium_9 + .info.block-left, .icon.icon_premium_10 + .info.block-left {
        width: calc(100% - 50px)
    }

    .spoiler-wrap .spoiler-head > .block-left {
        width: calc(100% - 22px)
    }

    #widget_prize_wins td {
        white-space: nowrap
    }

    #tabs > .ui.menu {
        overflow-x: scroll;
        flex-wrap: nowrap
    }

    #widget_edit .cols2 > .cols2-col:nth-child(1), #widget_edit .cols2 > .cols2-col:nth-child(2) {
        width: 100%
    }

    .chartLines .cells {
        height: auto;
        font-size: 13px
    }

    #charts-profit {
        display: none
    }

    #content {
        margin: 0 auto !important
    }

    .row > #content {
        padding: 0 15px !important
    }

    .form input.text {
        max-width: 100%
    }

    body.homepage .blog #content {
        padding-right: 0
    }

    .post-title, .post-title a:hover {
        font-size: 20px
    }

    .blog #blogsidebar {
        width: 100%
    }

    .adapt_menu {
        z-index: 100;
        display: block;
        padding: 10px;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        line-height: 24px;
        color: #fff
    }

    .adapt_menu span {
        display: inline-block;
        vertical-align: middle;
        width: 30px;
        height: 3px;
        background: #333;
        position: relative
    }

    .adapt_menu span:before {
        content: '';
        width: 100%;
        position: absolute;
        top: -8px;
        left: 0;
        height: 3px;
        background: #333
    }

    .adapt_menu span:after {
        content: '';
        width: 100%;
        position: absolute;
        bottom: -8px;
        left: 0;
        height: 3px;
        background: #333
    }

    #header-wrapper, #main_col_left, .footer-menu, #online_stat > .btn {
        display: none
    }

    #widget_online_stat, #widget_free_views_reg, .footer-banner-container {
        display: none !important
    }

    .choosed_method_box {
        padding: 15px
    }

    .choosed_method .img {
        position: static;
        margin: 0
    }

    .payin_amount_err span {
        margin: 0
    }

    .payin_amount_err {
        position: static;
        margin: -15px 0 15px 0
    }

    .popup_over {
        width: 100vw
    }

    .popup_div {
        max-width: 95%
    }

    .table_style_2 th, .table_style_2 td {
        vertical-align: top
    }

    #widget_unknowip input.text.tiny {
        width: 100% !important;
    }

    .topic i.ico-close {
        left: auto;
        right: 20px;
    }

    .hints {
        max-width: none;
    }

    #ad-form > .row > .\34 u, #ad-form > .row > .\38 u {
        width: 100%;
        padding: 0 15px
    }

    .form input.text.small, form input.text.small, form select.small {
        max-width: 100%;
        box-sizing: border-box
    }

    .video_placeholder {
        position: relative;
    }

    .video_placeholder i.fab {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0 0 -50px -50px;
    }

    .newhead {
        width: 100vw
    }

    .newad_btn.active {
        order: -1
    }

    .top-referrals .prizes-list {
        display: flex;
        flex-direction: column;
        height: auto!important;
    }

    .grid-view .pager, .list-view .pager {
        position: static;
        text-align: center;
        margin: 10px 0
    }
    /*Корректировки 900px*/
    #widget-trophies .widget_content .col .cells,
    #widget-premium_free .widget_content .col .cells{ /*Уменьшение текста в "Билеты на розыгрыш"*/
        font-size: 14px
    }
    /*Корерктировка высоты верхнего баннера*/
    .banner-item.se-control-panel.content-top{
        width: 100%;
        height: 45px;
    }
    .banner-item {
        margin-bottom: 10px;
    }
    /*https://surfearner.com/client*/

    .widgets .cell.new .row{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: "search"
        "status"
        "type"
        "sort";
    }
    .widgets .cell.new .row .\33 u:nth-child(1){
        grid-area: status;
    }
    .widgets .cell.new .row .\33 u:nth-child(2){
        grid-area: type;
    }
    .widgets .cell.new .row .\33 u:nth-child(3){
        grid-area: search;
    }
    .widgets .cell.new .row .\33 u:nth-child(4){
        grid-area: sort;
    }

    .widgets .cell.new .row .\33 u{
        width: 100%;
    }
    .widgets .cell.new .row .\33 u:nth-child(1),.widgets .cell.new .row .\33 u:nth-child(2){
        margin-bottom: 22px;
    }
    .widgets .cell.new .row .\33 u:nth-child(3){
        margin-bottom: 10px;
    }

    /*https://surfearner.com/top-10-partners*/
    .top-referrals .buttons{
        flex-direction: column;
    }
    .top-referrals .buttons a:first-child{
        margin-bottom: 10px;
    }

    /*https://surfearner.com/top-10-banners*/
    .tip_mod_container.style_black.south{
        width: 334px;
        left: 20px!important;
    }
    .tip_mod_container .tip_outer{
        margin-left: 0!important;
    }
    .tip_mod_container.style_black .tip_outer .tip_inner{
        margin-left: 0!important;
    }

    .tip_mod_container .tip_outer .tip_inner{
        white-space: pre-wrap!important;
    }

    /*Временная стрелочка*/
    .tip_mod_container[data-arrow="top"]:after, .tip_mod_container[data-arrow="top"]:before{
        border: none!important;
    }

    /*Модальное окно в размещении рекламы  */
    .row .d-t .d-r{
        height: auto!important;
    }

    .row .d-t .d-r .d-tc .text-right{
        text-align: left!important;
    }

    .row .d-t .d-r:nth-child(2){
        display: grid;
        grid-template-columns: 42px auto;
        grid-template-rows: auto auto;
        grid-template-areas: "balance balance"
        "sum rub"
        "dop-options dop-options";
    }
    .row .d-t .d-r .d-tc{
        display: block!important;
    }
    .row .d-t .d-r:nth-child(2) .d-tc:nth-child(1){
        grid-area: balance;
    }
    .row .d-t .d-r:nth-child(2) .d-tc:nth-child(2){
        grid-area: sum;
    }
    .row .d-t .d-r:nth-child(2) .d-tc:nth-child(3){
        grid-area: rub;
        margin-left: 10px;
    }
    .row .d-t .d-r:nth-child(2) .d-tc:nth-child(4){
        grid-area: dop-options;
        margin-bottom: 20px;
        text-align: left!important;
    }

    .in-txt{
        line-height: 25px;
        padding: 0;
    }

    .row>*{
        padding-left: 15px;
    }

    .row .d-t .d-r:nth-child(3){
        display: grid;
        grid-template-columns: 100px auto;
        grid-template-rows: auto auto;
        grid-template-areas: "start start"
        "input txt"
        "volume-err volume-err";
    }
    .row .d-t .d-r:nth-child(3) .d-tc:nth-child(1){
        grid-area: start;
    }
    .row .d-t .d-r:nth-child(3) .d-tc:nth-child(2){
        grid-area: input;
    }
    .row .d-t .d-r:nth-child(3) .d-tc:nth-child(3){
        grid-area: txt;
        margin-top: 4px;
    }
    .row .d-t .d-r:nth-child(3) .d-tc:nth-child(4){
        grid-area: volume-err;
    }

    .row .d-t .d-r:nth-child(4){
        display: grid;
        grid-template-columns: 100px auto;
        grid-template-rows: auto auto;
        grid-template-areas: "start start"
        "input txt"
        "calc calc";
        margin-top: 25px;
    }
    .row .d-t .d-r:nth-child(4) .d-tc:nth-child(1){
        grid-area: start;
    }
    .row .d-t .d-r:nth-child(4) .d-tc:nth-child(2){
        grid-area: input;
    }
    .row .d-t .d-r:nth-child(4) .d-tc:nth-child(3){
        grid-area: txt;
        margin-top: 4px;
    }
    .row .d-t .d-r:nth-child(4) .d-tc:nth-child(4){
        grid-area: calc;
    }
    .adv-item .block-up .ai-hide-link .row.row-1 .review.link.pointer{
        opacity: 0!important;
    }

    /*Адаптация модального окно расписания раздачи заданий*/
    .popup_div.delay_start_popup.style-new{
        max-width: 100%;
    }
    .popup_div.delay_start_popup.style-new h2{
        font-size: 20px;
    }
    .popup_div.delay_start_popup.style-new div,
    .popup_div.delay_start_popup.style-new label{
        font-size: 14px;
    }

    .popup_div.delay_start_popup.style-new .rotation_limits{
        display: grid!important;
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2){
        display: grid;
        grid-template-areas: "select1 select2 select3"
        'select4 select5 select6'
        'select7 select7 .';
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2) select:nth-child(1){
        grid-area: select1;
        margin: 10px 0!important;
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2) select:nth-child(2){
        grid-area: select2;
        margin: 10px 0!important;
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2) select:nth-child(3){
        grid-area: select3;
        margin: 10px 0!important;
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2) select:nth-child(4){
        grid-area: select4;
        margin-bottom: 10px!important;
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2) select:nth-child(6){
        grid-area: select6;
        margin-bottom: 10px!important;
        left: -110px;
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2) span{
        grid-area: select5;
        margin-bottom: 10px!important;
    }
    .popup_div.delay_start_popup.style-new .rotation_limits div:nth-child(2) i{
        grid-area: select7;
    }

    .popup_div.delay_start_popup.style-new .outer div .link{
        display: flex!important;
        margin: 15px 0 0 0!important;
        padding: 0!important;
    }

    /*Картинки в размещении рекламы 900*/
    .banner-preview{
        height: auto!important;
        overflow-x: hidden!important;
        padding: 0!important;
        margin: 10px 0!important;
    }

    .banner-preview .over-layer{
        height: 63px;
    }

    .banner-preview .bp-img img{
        height: auto!important;
        padding: 5px 0 0;
    }

    .banner-preview .bp-html{
        height: auto!important;
    }
    .banner-preview .bp-img,
    .banner-preview .bp-html .bph-title,
    .banner-preview .bp-html .bph-text{
        margin: 0!important;
        padding: 0!important;
    }
    .banner-preview .bp-html .bph-title{
        font-size: 20px;
    }
    .banner-preview .bp-html .bph-text{
        font-size: 14px;
        line-height: 28px;
    }


    .row.new.row_time.times_more_hide .row{
        display: flex;
    }

    .row.new.row_scenariy .right,
    .row.new.row_captcha_enable .right{
        float: left!important;
    }
    .row.new.row_captcha_enable .right div{
        flex-direction: column-reverse;
    }

    .row.new.row_captcha_enable .right .wrap-select.addPrice{
        margin-top: 10px;
        margin-bottom: 0;
    }

    .row.new.row_scenariy .right .wrap-select.addPrice{
        margin-top: 10px;
    }

    #strategy_wrap  .wrap-select.addPrice{
        margin-bottom: 10px;
    }

    /*Добавленный блок с активными заданями*/
    .widget_content .newad_btn{
        margin: 0 0 15px;
        width: 333px !important;
    }

    .widget_content .newad_btn li{
        list-style-type: none;
    }

    .widget_content .newad_btn li a{
        text-decoration: none;
    }

    .widget_content .newad_btn li a:before{
        font-size: 24px;
        color: green;
        padding-left: 9px;
        padding-right: 15px;
    }

    .widget_content .newad_btn li a .news .bonus{
        position: relative;
        top: -3px;
        right: -45px;
    }

    #promo_code .slideDown  {
        right: 0;
    }

    /*Трофеи лидеров*/
    #widget-trophies .flex {
        flex-direction: column;
        grid-gap: 20px;
    }

    /*Раздел добавить рекламу 3.0*/
    .advert-list {
        padding: 10px;
    }

    .advert-list:nth-child(3) {
        padding: 10px;
    }

    .advert-list p {
        margin-bottom: 0!important;
    }

    .advert-list .flex-column {
        flex-direction: column;
        min-width: 100%;
    }

    .advert-btn {
        width: auto;
        max-width: 384px;
    }

    .advert-btn .wrapper-main .box-left {
        padding-left: 10px;
    }

    .advert-btn .wrapper-main .box-left a {
        padding-left: 0px;
    }

    .advert-btn .wrapper-main .box-left i {
        margin-right: 10px;
    }

    .advert-btn .wrapper-main .box-left .text-box {
        font-size: 14px;
        line-height: 16px;
    }

    .advert-hint .wrapper-hint {
        padding: 5px 20px;
    }

    .advert-hint .wrapper-hint p {
        font-size: 14px;
        line-height: 24px;
    }

    .advert-list a.btn {
        width: auto;
    }

    .advert-hint[data-hint='hint-1'],
    .advert-hint[data-hint='hint-2'],
    .advert-hint[data-hint='hint-3']{
        min-height: 36px;
    }

    [data-hint='hint-1'].spoiler-height,
    [data-hint='hint-2'].spoiler-height,
    [data-hint='hint-3'].spoiler-height {
        max-height: 100%!important;
    }

    /*Карта сайта*/
    .site-map-wrapper {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .referral-link .flex-row {
        flex-direction: column;
        padding: 20px 10px;
        margin: 0;
    }

    .referral-link .flex-row img {
        margin-bottom: 30px;
    }

    .referral-link .flex-row .flex-box {
        margin-left: 0;
    }

    .referral-link .flex-row .flex-box .box-header {
        text-align: center;
    }

    .referral-link .flex-row:nth-child(2),
    .referral-link .flex-row:nth-child(3) {
        align-items: flex-start;
    }

    .referral-link .flex-row:nth-child(3) {
        padding: 0 10px 20px;
    }

    .referral-link .flex-row input {
        margin: 10px 0 20px;
    }

    .referral-link .flex-row .box-wrapper:first-child {
        margin: 0!important;
    }

    .referral-link .flex-row .box-wrapper:nth-child(3) .hint,
    .referral-link .flex-row .box-wrapper:nth-child(4) .hint {
        display: none;
    }

    .referral-link .flex-row .flex-box-wrapper .box-wrapper:nth-child(1) .hint {
        min-width: 153px;
        left: 0;
    }

    .referral-link .flex-row .box-wrapper:nth-child(1) .hint::after {
        left: 2px;
    }

    [data-mobile='off'] {
        display: none;
    }

    [data-mobile='on'] {
        display: flex;
    }

    #widget_newad_steps.task .widget_content .flex-row {
        flex-direction: column;
    }

    #widget_newad_steps.task .widget_content .flex-row .box-left {
        flex-direction: column;
    }

    #widget_newad_steps.task .referral-link .flex-row:first-child {
        gap: 20px;
    }

    #widget_newad_steps.task .referral-link .flex-row {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 480px) {
    #add_video .advert-hint {
        max-height: 38px;
    }

    #add_video .advert-hint .wrapper-hint p {
        line-height: 13px;
    }

    #strategy_wrap *, .filterPeoplesWrap * {
        line-height: 18px
    }

    .chartLines .h{
        margin: 32px 0 18px 0;
    }

    #client_adult_notice .widget_content .left{
        display: grid;
        grid-template-rows: repeat(2, auto);
        grid-template-columns: 40px 40px 213px;
        grid-template-areas: 'text text text'
                             'i2 i3 .';
    }

    #client_adult_notice .widget_content .left i:nth-child(1){
        grid-area: text;
    }

    #client_adult_notice .widget_content .left i:nth-child(2){
        grid-area: i2;
        margin-left: 0!important;
        margin-right: 20px !important;
        height: 0;
        padding-top: 10px;
    }

    #client_adult_notice .widget_content .left i:nth-child(3){
        grid-area: i3;
        margin: 0!important;
        height: 0;
        padding-top: 10px;
    }

    #client_adult_notice .widget_content .link.nodecor.right{
        margin-left: 204px;
    }

    #strategy_wrap > .row, .filterPeoplesWrap > .row {
        margin-bottom: 10px
    }

    #strategy_wrap .clr_20:nth-child(2) {
        display:none;
    }
    #add_video .widget_content div[class*="clr_"]:nth-child(10),
    #add_video .widget_content div[class*="clr_"]:nth-child(11),
    #add_video .widget_content div[class*="clr_"]:nth-child(15),
    #add_video .widget_content div[class*="clr_"]:nth-child(17),
    #add_video .widget_content div[class*="clr_"]:nth-child(18),
    #add_video .widget_content div[class*="clr_"]:nth-child(19){
        display: none;
    }

    #pos_targeting .filterPeoplesWrap {
        padding: 0 0 15px 0;
    }

    #add_video #strategy_wrap {
        margin-bottom: 10px;
    }

    #pos_targeting .filterPeoplesWrap .flex_row:nth-child(n+2) {
        margin: 0;
    }

    .row_captcha_enable .clr_20 {
        display: none;
    }

    .flex_row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .flex_row.row_scenariy .pos_info_input .pos_info_box_wrapper .wrap-select select,
    .flex_row.row_captcha_enable .pos_info_input .pos_info_box_wrapper .wrap-select select {
        font-size: 14px;
    }

    .flex_row.row_captcha_enable {
        margin-top: 20px;
    }

    .flex_row.row_age .pos_info_input .pos_info_box_wrapper {
        display: grid;
        gap: 0;
        grid-template-columns: 67px 20px 67px 67px;
        grid-template-areas: "first-age defis second-age text";
        justify-content: flex-start;
    }

    .flex_row.row_age .pos_info_input .pos_info_box_wrapper .txt-desc {
        grid-area: text;
        display: flex;
        align-items: center;
    }

    .flex_row.row_age .pos_info_input .pos_info_box_wrapper div:nth-child(2) {
        grid-area: first-age
    }

    .flex_row.row_age .pos_info_input .pos_info_box_wrapper div:nth-child(3) {
        grid-area: defis;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .flex_row.row_age .pos_info_input .pos_info_box_wrapper div:nth-child(4) {
        grid-area: second-age
    }

    .flex_row.row_age .pos_info_input .pos_info_box_wrapper .txt-desc {
        margin-left: 105px;
    }

    .flex_row .pos_info_title {
        line-height: 24px;

    }

    .flex_row .pos_info_input .pos_info_box_wrapper {
        flex-direction: row-reverse;
        justify-content: space-between;
        height: 32px;
    }

    .flex_row .pos_info_input .pos_info_box_wrapper.row > * {
        margin: 0;
        padding: 0;
    }

    .flex_row .pos_info_input .pos_info_box_wrapper .pos_info_box.txt-desc {
        display: flex;
        align-items: center;
        margin-right: 1px;
        margin-left: 0!important;
    }

    .flex_row .pos_info_input .pos_info_box_wrapper .pos_info_box .row {
        height: 32px;
    }

    .flex_row .pos_info_input .pos_info_box_wrapper .pos_info_box .wrap-select {
        width: 240px;
    }

    .flex_row .pos_info_input .pos_info_box_wrapper .pos_info_box .wrap-icon,
    .flex_row .pos_info_input .pos_info_box_wrapper .pos_info_box .wrap-icon{
        display: flex;
        height: 32px;
        margin: 0 !important;
    }

    .times_more_hide {
        margin-top: 20px !important;
    }

    .times_more_hide .pos_info_input {
        display: flex;
        flex-direction: column;
    }
    .times_more_hide .pos_info_input .pos_info_box_wrapper {
        justify-content: flex-end;
    }

    .times_more_hide .pos_info_input .pos_info_box_wrapper .txt-desc {
        position: relative;
        left: -7px;
        padding: 0;
    }

    .btn_video_placeholder a.btn {
        font-size: 14px;
        line-height: 18px;
        padding: 5px 30px;
        margin: 10px 0 0;
    }

    #advert_type_wrapper .advert-btn .wrapper-main .box-left {
        padding-left: 10px;
    }

    #advert_type_wrapper .advert-btn .wrapper-main .box-left i {
        font-size: 16px;
        min-width: 24px !important;
    }

    #advert_type_wrapper .advert-btn .wrapper-info {
        padding: 20px 10px 10px;
    }

    #advert_type_wrapper .advert-btn .wrapper-info .box-info .head {
        font-size: 16px;
    }

    #advert_type_wrapper .advert-btn .wrapper-info p,
    #advert_type_wrapper .advert-btn .wrapper-info .box-info .link {
        font-size: 14px;
    }

    #advert_type_wrapper .advert-btn .wrapper-info .box-info img {
        width: 100%;
    }

    #advert_type_wrapper .advert-btn .wrapper-info .box-info iframe {
        width: 363px;
        height: 204px;
    }

    .pricebox select {
        margin: 10px 0
    }

    .new .pricebox .wrap-select::after {
        margin: -32px 0 0 -18px
    }

    #tgInvite {
        padding: 20px 10px;
    }

    #tgInvite .flex-row {
        flex-direction: column;
        align-items: center;
    }

    #tgInvite .flex-row .flex-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    #tgInvite .flex-row .flex-content ._fs18,
    #tgInvite .flex-row .flex-content ._fs16 {
        text-align: center;
    }

    #tgInvite .flex-row .flex-content .flex-row {
        gap: 10;
    }

    #tgInvite .flex-row .img_qr {
        display: none;
    }
    #tgInvite .flex-row .flex-content p._fs18 {
        font-size: 16px;
        white-space: normal;
    }

    #tgInvite .flex-row .flex-content p._fs16 {
        font-size: 14px;
        line-height: 20px;
        white-space: normal;
    }

    #tgInvite .flex-row .flex-content .flex-row {
        font-size: 14px;
        align-items: center;
    }

    #tgInvite .flex-row .flex-content .flex-row a.btn,
    #tgInvite .flex-row .flex-content .flex-row #tgInvite-hide{
        margin-top: 0px;
    }

.7u,

.5u {
      width: 100%;
      padding-left: 15px;
      padding-right: 15px
  }

    .country-2453 {
        margin: 0
    }

    .cell._type .wrap_country_active .wrap-select {
        padding: 0;
        width: calc(100% - 45px)
    }

    .cell._type .wrap_country_active .wrap-select + div {
        padding: 0
    }

    #advert_type_wrapper .ui.menu.blue .item {
        font-size: 13px !important;
        padding: 6px !important
    }

    .txt-desc, .txt-desc b {
        text-align: left !important
    }

    #strategy_wrap .fa-question-circle, #pos_targeting .fa-question-circle, .filterPeoplesWrap .fa-question-circle {
        display: none
    }

    .pricebox .txt-desc {
        float: right
    }

    .pricebox .txt-desc + div {
        padding-left: 15px !important
    }

    #pos_targeting {
        overflow: hidden
    }

    .row + .row > * {
        padding: 10px 15px 0 15px
    }

    .year {
        width: auto !important
    }

    .row_peoples .wrap-icon {
        display: none
    }

    .text_adult {
        display: block
    }

    #client_adult_notice {
        text-align: left
    }

    .text_adult + i {
        margin: 10px !important
    }

    #client_adult_notice .link.right {
        float: none !important
    }

    .client_save > .row > div {
        padding: 0 15px !important
    }
    .client_save > .row > div:nth-child(2){
        padding: 20px 15px 0 !important;
    }

    .btn {
        white-space: inherit
    }

    .cells {
        flex-wrap: wrap
    }

    .cells .btn.blue, .cells > .cell:not(:first-child) {
        width: 100%;
        margin: 10px 0
    }

    .ai-info, .ai-info + div {
        width: 100%;
        padding: 0 !important;
        margin: 10px 0 !important
    }

    .adv-item .row-1 {
        height: auto
    }

    .adv-item .banner-wrap > div {
        padding: 10px 0 !important;
    }

    .adv-item .banner-wrap > div .row {
        margin: 0 !important
    }

    .adv-item .banner-wrap > div img {
        width: auto !important
    }

    .adv-item .banner-wrap > div div {
        width: 100% !important;
        padding: 5px 0 !important
    }

    .aic-btn a span {
        display: none !important
    }

    .aic-btn > a::before {
        margin-right: 0
    }

    .cpa-items.type-11 div.item {
        text-align: center
    }

    .cpa-items.type-11 div.item .big_icon {
        position: static
    }

    .cpa-items.type-11 div.item .col-2 .row > div {
        width: 100% !important;
        padding: 0 !important
    }

    #payout_step2 .wallet-select {
        margin: 0 2% 15px 0;
        max-width: 47%
    }

    #formWallets label {
        font-size: 12px
    }

    .block-choice {
        width: 100%;
        margin: 10px 0 !important;
        padding: 10px
    }

    .inline-flex {
        flex-wrap: wrap
    }

    .\34 u{
        width: 100%;
    }

    .\38 u, .\37 u, .\35 u, .\36 u, #strategy_wrap > .row .\33 u, #strategy_wrap > .row .\39 u,
    .row_geo .\33 u, .row_geo .\39 u, .row_premium .\33 u, .row_premium .\39 u, .row_gender .\33 u, .row_gender .\39 u {
        width: 100%;
        padding: 0 15px
    }

    .row_premium .row, .row_gender .row {
        margin: 0
    }

    .row_premium .row .\33 u, .row_premium .row .\39 u, .row_gender .row .\33 u, .row_gender .row .\39 u {
        padding: 0 15px 0 0 !important
    }

    /*text-desc*/
    .filterPeoplesWrap .txt-desc{
        display: flex;
        justify-content: flex-end;
    }

    .cell.slim .widget_content {
        display: flex;
        flex-wrap: wrap
    }

    .newad_btn_desc + span, .newad_btn_desc + a {
        display: none
    }

    [data-hint] {
        position: static
    }

    .hints {
        max-width: none;
        margin: 0
    }

    .icon_browser li {
        max-width: 32%
    }

    /*Картинки в размещении рекламы 480*/
    .adv-item .banner-wrap > .banner-preview{
        height: auto!important;
        overflow-x: hidden!important;
        padding: 0!important;
        margin: 10px 0!important;
    }

    .banner-preview .bp-img{
        height: 63px!important;
    }

    .banner-preview .bp-img,
    .banner-preview .bp-html .bph-title,
    .banner-preview .bp-html .bph-text{
        margin: 0!important;
        padding: 0!important;
    }
    /*!Картинки в размещении рекламы 480*/

    /*settings 480*/
    #mail_subscribe .table_style_2 label {
        top: 0;
    }

    #widget_settings .table_style {
        display: flex;
    }

    #widget_settings .table_style tr {
        display: flex;
    }

    #widget_settings .table_style.table-notify tr:nth-child(3),
    #widget_settings .table_style.table-push tr {
        width: 341px;
        justify-content: space-between;
    }

    #widget_settings .table_style.table-notify tr:nth-child(3) td:first-child,
    #widget_settings .table_style.table-push tr td:first-child {
        max-width: 300px;
    }

    #widget_settings .widget_content .table_style.table-notify tbody tr:nth-child(2),
    #widget_settings:nth-child(3) .widget_content .table_style.table-notify tbody tr:nth-child(1){
        display: flex;
        flex-direction: column;
    }

    #widget_settings .widget_content .table_style #settings input[type="checkbox"] + label,
    #widget_settings .widget_content .table_style #push_gift_subscribe input[type="checkbox"] + label,
    #widget_settings .widget_content .table_style #push_surf_subscribe input[type="checkbox"] + label,
    #widget_settings .widget_content .table_style #push_cpa_subscribe input[type="checkbox"] + label,
    #widget_settings .widget_content .table_style #push_video_subscribe input[type="checkbox"] + label,
    #widget_settings .widget_content .table_style #push_youtube_subscribe input[type="checkbox"] + label {
        margin: 0;
    }

    /**/
    .widget_content .flex-trophies {
        flex-direction: column;
        grid-gap: 20px;
    }

    .modal-share {
        left: 14%;
        white-space: normal;
        width: 305px;
    }

    label[for="modal-2auth"] {
        width: auto;
        top: 17%;
        left: 4%;
        width: 392px;
        padding: 15px 10px;
    }

    #advertiser_smm-list_tasks .mobile {
        display: flex;
        flex-direction: column;
    }

    #advertiser_smm-list_tasks .mobile .headline {
        display: flex;
        flex-wrap: wrap;
    }

    #advertiser_smm-list_tasks .mobile .advertiser_smm-list_tasks-id,
    #advertiser_smm-list_tasks .mobile .advertiser_smm-list_tasks-title {
        display: inline-flex;
    }

    #advertiser_smm-list_tasks .mobile .advertiser_smm-list_tasks-id {
        font-size: 12px;
        line-height: 14px;
        position: relative;
        left: 0;
        top: 0;
        padding: 5px 7px 5px 7px;
        margin-left: -13px;
    }

    #advertiser_smm-list_tasks .mobile .advertiser_smm-list_tasks-title {
        font-size: 14px;
        margin: 0 0 0 3px;
    }

    #advertiser_smm-list_tasks .mobile .headline [class*="icon-"] {
        gap: 0;
    }

    #advertiser_smm-list_tasks .mobile .headline .advertiser_smm-list_tasks-title-sub {
        margin-top: 10px;
    }

    #advertiser_smm-list_tasks .mobile .headline .advertiser_smm-list_tasks-title-sub-icons > div {
        width: 60px;
        height: 60px;
        padding: 7px;
    }

    #advertiser_smm-list_tasks .mobile .headline .advertiser_smm-list_tasks-title-sub-linkUrl {
        padding-left: 15px;
        line-height: 20px;
    }

    #advertiser_smm-list_tasks .mobile .d-t {
        display: flex;
        flex-direction: column;
    }

    #advertiser_smm-list_tasks .mobile .d-t .d-r {
        display: flex;
        flex-direction: column;
    }

    #advertiser_smm-list_tasks .mobile .d-t .d-r:nth-child(4),
    #advertiser_smm-list_tasks .mobile .d-t .d-r:nth-child(5),
    #advertiser_smm-list_tasks .mobile .d-t .d-r:nth-child(6) {
        display: inline-flex;
        flex-direction: row;
        gap: 5px;
    }

    #advertiser_smm-list_tasks .mobile .d-t .d-r:nth-child(4) .d-tc,
    #advertiser_smm-list_tasks .mobile .d-t .d-r:nth-child(5) .d-tc,
    #advertiser_smm-list_tasks .mobile .d-t .d-r:nth-child(6) .d-tc {
        display: inline-flex !important;
    }

    #widget_newad_steps.task .flex-row .box-right img {
        margin-top: 20px;
    }

    #widget_newad_steps.task .referral-link .flex-row {
        flex-direction: column;
    }

    #promo_code {
        left: 0;
        margin: 0 0 0 10px;
    }

    #widget_client .pay_management .flex-row {
        flex-wrap: wrap;
    }

    #widget_client .pay_management .flex-row .flex-bonus {
        margin: 0;
        width: 100%;
    }

    #form-pay-amount .menu .pay_desktop {
        display: none;
    }

    #form-pay-amount .menu .pay_mobile {
        display: block;
    }

    .pay_content__mobile_hint {
        display: block;
    }

    /*Стандартное модальное окно SE*/

    .se-window .content .wrapper .wallet {
        font-size: 20px;
        line-height: 24px;
    }

    .se-window .flex-bonus {
        height: 95px;
    }

    .se-window .flex-bonus .box-left i {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .se-window .flex-bonus .box-right {
        flex-basis: 80%;
    }

    .se-window [data-table="open"] {
        overflow: auto;
    }

    /*Виджет se*/

    .se-widget-wrapper {
        flex-wrap: wrap;
    }

    .se-widget-wrapper > * {
        flex-basis: 100%;
    }

    .se-widget-wrapper .se-left-box {
        align-items: flex-start;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .ext-mobile {
        display: block;
    }
    
    #cpa-items .item {
        padding: 10px;
        display: flex;
        flex-wrap: wrap
    }

    #cpa-items .item > .col {
        display: block
    }

    #cpa-items .item > .col-1 {
        width: 170px
    }

    #cpa-items .item > .col-2 {
        order: 2;
        width: 100%
    }

    #cpa-items .item > .col-2 .wrap {
        margin: 0;
        font-size: 14px
    }

    #cpa-items .item i.ico-close {
        position: absolute
    }

    #cpa-items .item > .col-1 .wrap {
        margin: 0
    }

    #cpa-items .item > .col-3 {
        border: 0;
        width: calc(100% - 170px)
    }

    .widget.cell {
        width: 100%;
        margin: 0 0 10px
    }

    .adv-item .row-1 .ai-num + div, .adv-item .row-1 .ai-num + div + div {
        padding-left: 15px !important;
        clear: both
    }

    .newaid-name {
        display: block;
        font-size: 18px;
        margin: 10px 0
    }

    .aid-name-input {
        display: none
    }

    .adv-item .banner-preview {
        margin: 0
    }

    .cell.slim .widget_content .nowrap {
        white-space: inherit
    }

    .cell.slim .widget_content.widget_flex {
        display: flex;
        flex-wrap: wrap
    }

    .link_refs {
        flex-wrap: wrap
    }

    .link_ref {
        width: 100%
    }

    .link_ref .block-left {
        width: 60px
    }

    .link_ref .block-right {
        width: 100%;
        padding: 0 0 0 70px
    }

    .link_ref input {
        text-align: left;
        padding: 5px 8px;
        height: auto;
        font-size: 16px
    }

    .payin_bonus {
        position: static;
        margin-bottom: 15px
    }

    form .choose_amount input[type="radio"] + label {
        margin-bottom: 0
    }

    .noinmob {
        display: none
    }

    .blog .post-like {
        float: none;
        display: inline-block;
    }

    #info_smm .btn {
        margin: 0 10px 15px 0
    }

    .newad-wizard .link {
        margin-bottom: 10px
    }

    /*vyv*/
    .cells.cell_right, .cells.cell_right {
        position: static
    }

    .field-payout-sum .\32 u, .field-payout-sum .\32 u {
        width: auto
    }

    /*top10*/
    .top10ctr_line {
        flex-wrap: wrap
    }

    .top10ctr_line .place {
        position: static
    }

    .top10ctr_line .col-1 {
        width: 100%;
        text-align: center;
        margin: 0 auto 15px
    }

    .top10ctr_line .place {
        position: static;
        margin: 0 auto
    }

    .top10ctr_line .col-2 {
        width: 100%;
        margin: 15px 0
    }

    .top10ctr_line .banner {
        height: auto;
        max-width: 100%
    }

    /* Раздел добавить рекламу*/
    .grid-add-advertise {
        display: flex!important;
        flex-direction: column;
    }

    .widget_content .grid-add-advertise .newad_btn,
    #widget_client .grid-add-advertise .newad_btn {
        margin: 0 !important;
        width: auto !important;
    }

    .widget_content .socials .flex-column-tm,
    #widget_client .socials .flex-column-tm {
        margin: 0px;
    }

    .widget_content .socials .social .menu-dropdown,
    #widget_client .socials .social .menu-dropdown {
        min-width: 166px;
        left: -20px;
        display: none;
        visibility: hidden;
    }

    .widget_content .socials .social .menu-dropdown::after,
    #widget_client .socials .social .menu-dropdown::after {
        left: 38px;
    }

    .widget_content .socials .social-wrapper:nth-child(4n) .social .menu-dropdown,
    #widget_client .socials .social-wrapper:nth-child(4n) .social .menu-dropdown {
        left: -85px;
    }

    .widget_content .socials .social-wrapper:nth-child(4n) .social .menu-dropdown::after,
    #widget_client .socials .social-wrapper:nth-child(4n) .social .menu-dropdown::after {
        left: 103px;
    }

    #advertiser_smm-creating_task-task .fs18 {
        font-size: 14px!important;
    }

    #advertiser_smm-creating_task-task #advertiser_smm-creating_task-activity-yt,
    #advertiser_smm-creating_task-task #advertiser_smm-creating_task-activity-vk {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    #advertiser_smm-creating_task-task #advertiser_smm-creating_task-activity-ok {
        grid-template-columns: 100% !important;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(1) {
        display: grid;
        grid-template-columns: 46px 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "row-1 row-1"
            "row-2 row-3";
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(1) .d-tc:nth-child(1) {
        grid-area: row-1;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(1) .d-tc:nth-child(2) {
        grid-area: row-2;
        display: grid!important;
        justify-items: start;
        width: auto;
        max-width: 100%;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(1) .d-tc:nth-child(3) {
        grid-area: row-3;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(2) {
        display: grid;
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "row-1 row-1"
            "row-2 ."
            "row-3 row-3";
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(2) .d-tc:nth-child(1) {
        grid-area: row-1;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(2) .d-tc:nth-child(2) {
        grid-area: row-2;
        display: grid !important;
        width: 120px;
        max-width: 120px;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(2) .d-tc:nth-child(3) {
        grid-area: row-3;
        margin: 0;
        display: flex !important;
        justify-content: flex-start;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(3) {
        display: grid;
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "row-1 row-1"
            "row-2 row-3";
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(3) .d-tc:nth-child(1) {
        grid-area: row-1;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(3) .d-tc:nth-child(2) {
        grid-area: row-2;
        display: grid !important;
        width: 120px;
        max-width: 120px;
    }

    #advertiser_smm-creating_task-payment .d-t .d-r:nth-child(3) .d-tc:nth-child(3) {
        grid-area: row-3;
        margin: 0;
        display: flex !important;
        align-items: center;
    }

    #widget_newad_steps.task .referral-link .flex-row:nth-child(2) {
        flex-direction: column;
    }

    /** Врeменные костыли */

    /**1. Форма заказа рекламы в SMM заданиях*/

    #advertiser_smm-creating_task-task .d-r {
        display: flex;
        flex-wrap: wrap;
    }

    #advertiser_smm-creating_task-task .d-r > * {
        flex-basis: 100%;
    }


}

@media (max-width: 425px) {
    .advert-btn .wrapper-main .box-right {
        width: 30px;
    }
}

@media (max-width: 375px) {
    .flex {
        width: 335px;
    }

    .modal-share {
        left: 35px;
    }

    .modal-page {
        left: 66px;
    }

    .modal-window {
        width: 335px;
    }

    #widget_unknowip .headline.first {
        font-size: 16px;
        font-weight: 600;
    }

    label[for="modal-2auth"] {
        left: 10px;
        top: 70px;
        width: 355px;
    }

    label[for="modal-2auth"] .flex {
        width: auto;
    }

    #advertiser_smm-list_tasks .mobile .advertiser_smm-list_tasks-id {
        font-size: 11px;
    }

    #advertiser_smm-list_tasks .mobile .advertiser_smm-list_tasks-title {
        font-size: 12px;
        margin: 0 0 0 4px;
    }

    #advertiser_smm-list_tasks .mobile .headline .advertiser_smm-list_tasks-title-sub-linkUrl {
        line-height: 16px;
        font-size: 12px;
    }

    .mobile-login,
    .mobile-register {
        padding: 0 27px 0 !important;
    }

    #widget_newad_steps.task .flex-row .box-right img {
        width: 320px;
        max-width: 320px;
    }

    .task .referral-link .flex .flex-row:nth-child(2) {
        margin-top: 0;
    }

    .modal-window .modal-head .box-left {
        font-size: 16px;
    }

    .modal-window .modal-content_box .modal-content_box__wrapper p {
        font-size: 14px !important;
    }

    .modal-window .modal-head {
        margin-bottom: 20px;
    }

    .modal-window .modal-content_box .modal-content_box__footer a.btn {
        font-size: 14px;
    }

    [data-dfa=on] {
        left: 20px;
    }

    [data-block="smm"] .advert-btn .wrapper-main .box-left,
    [data-block="tasks"] .advert-btn .wrapper-main .box-left {
        padding-left: 10px;
    }


    .se-window .content .wrapper .wallet {
        font-size: 18px;
    }

}

@media (max-width: 340px) {
    .logo_new img {
        display: none
    }

    .logo_new a {
        display: block;
        width: 100%;
        height: 100%
    }

    .logo_new {
        background: url(https://nonemos.ru/clients/surfearner.com/logo-short.svg) 50% 50% no-repeat;
        background-size: 100% auto;
        width: 60px;
        height: 35px
    }
}

#menu .catalo {
    margin-top: 50px
}

#menu a.fa, #menu a.fas, #menu a.fab {
    padding-left: 50px
}

#menu a.fa:before, #menu a.fas:before, #menu a.fab:before {
    position: absolute;
    margin: 0 0 0 -30px !important;
    color: #a8a8a8
}

#menu .bonus {
    color: #FFF !important;
    background: red;
    border-radius: 11px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    font-size: 12px;
    text-align: center;
    padding: 0 4px;
    font-weight: 600
}

.mm-spn.mm-spn--light {
    background: #fff
}

.inclose {
    position: absolute;
    top: 5px;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    color: #fff;
    font-size: 35px;
    z-index: 50;
    text-align: center
}

.inclose span {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 3px;
    background: #fff;
    position: relative;
    padding: 0
}

.inclose span:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 3px;
    -webkit-transform: rotate(45deg) translate(-10px, -8px);
    -ms-transform: rotate(45deg) translate(-10px, -8px);
    transform: rotate(45deg) translate(-10px, -8px);
    top: 12px;
    opacity: 1;
    background: #ccc;
    left: 2px
}

.inclose span:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 3px;
    -webkit-transform: rotate(-45deg) translate(-7px, 8px);
    -ms-transform: rotate(-45deg) translate(-7px, 8px);
    transform: rotate(-45deg) translate(-7px, 8px);
    bottom: 12px;
    opacity: 1;
    background: #ccc;
    left: 0
}

.catalo b, .catalo2 b, .catalo7 b, .catalo3 b, .catalo1 b, .catalo10 b {
    margin: 0 0 0 13px;
    padding: 10px;
    display: block;
    background: #f2f2f2
}

.catalo b {
    border-left: 4px solid #fa6126
}

.catalo2 b {
    border-left: 4px solid #17B6FF
}

.catalo1 b {
    border-left: 4px solid #F22074
}

.catalo10 b {
    border-left: 4px solid #fa6126
}

.catalo7 b {
    border-left: 4px solid #9900FF
}

.catalo3 b {
    border-left: 4px solid #56A848
}

.mm-spn li.catalo:before, .mm-spn li.catalo2:before, .mm-spn li.catalo7:before, .mm-spn li.catalo3:before, .mm-spn li.catalo1:before, .mm-spn li.catalo10:before {
    border-color: #f2f2f2
}

.infooter_menu.hide {
    display: block !important
}

#menu .icon_vip {
    padding-left: 50px !important;
}

#menu .icon_vip::before {
    content: "";
    width: 18px;
    height: 100%;
    background: url(https://static.surfearner.com/images/svg/icon_vip_gray.svg) no-repeat 50% 50%;
    position: absolute;
    margin: 0 0 0 -30px !important;
    color: #a8a8a8;
    top: 0
}

@media (max-width: 1456px) {
    #navCabinet .translate .hover {
        left: -100px;
    }
}

@media (max-width: 1220px) {
    #navCabinet .translate .hover {
        left: -150px;
    }
}

@media (max-width: 1115px) {
    #navCabinet ul {
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .header {
        gap: 174px;
    }

    #navCabinet ul {
        gap: 15px;
    }

    #navCabinet .header-balance {
        margin-right: 10px;
    }
}


@media (max-width: 1043px) {
    #navCabinet ul {
        gap: 12px;
    }
}
