/* new calc START */

.new-calc__wrapper {
    background: #F2F4F7;
    padding: 70px 0;
}

.new-calc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    color: #475467;
}

.new-calc__block {
    box-shadow: 0 4px 6px -2px #10182808, 0 12px 16px -4px #10182814;
    background: #fff;
    width: 100%;
    padding: 32px 40px 25px;
    border-radius: 12px;
    box-sizing: border-box;
    min-height: 462px;
}

.new-calc__block-detailed_mobile-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    color: #1570EF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}

.new-calc__block-detailed_mobile-toggle_active .new-icon {
    transform: rotate(180deg);
}

.new-calc__block-detailed_mobile-toggle .new-icon {
    height: 10px;
    background-size: 14px;
    transition: all 0.3s;
}

.new-calc__block_empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    border: 1px solid #D0D5DD;
}

.icon-mining-calc {
    width: 48px;
    height: 48px;
}

.icon-mining-calc_adv {
    background: url('/wp-content/themes/ecos-m/assets/img/new-calc/featured_icon.svg');
    margin: 0 auto;
}

.icon-mining-calc_cloud-mining {
    background: url('/wp-content/themes/ecos-m/assets/img/new-calc/cloud_mining_icon.svg');
}

.new-calc__adv-icon {
    display: none;
    margin: 0 auto 16px;
}

.new-calc__block_inform {
    background: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 0;
}

.new-calc__block-text-header {
    color: #1D2939;
    font-size: 34px;
    font-weight: 600;
    line-height: 48px;
}

.new-calc__block-text {
    font-size: 20px;
    color: #475467;
    line-height: 30px;
    margin: 25px 0 0 0;
}

.new-calc__header,
.new-calc__header-mini {
    color: #1D2939;
    font-weight: 600;
}

.new-calc__header {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 8px;
}

.new-calc__header-mini {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 5px;
}

.new-calc__inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
}

.new-calc__input {
    position: relative;
    border-bottom: 1px solid #EAECF0;
    padding: 9px 15px;
}

.new-calc__input_fill {
    background: #F2F4F7;
    border-radius: 8px;
    border-bottom: 0;
    box-shadow: 0 1px 2px 0 #1018280D;
}

.new-calc__input_fill .new-calc__input-data {
    color: #175CD3;
    display: flex;
    align-items: center;
}

#slider-value {
    color: #175CD3;
    font-size: 20px;
    background: none;
    border: none;
    outline: none;
}

#slider-value::-webkit-outer-spin-button,
#slider-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#slider-value[type=number] {
    -moz-appearance: textfield;
}

.new-calc__input-header {
    font-size: 13px;
    margin-bottom: 5px;
}

.new-calc__input-data {
    font-size: 20px;
}

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

.new-calc__button {
    width: 100%;
    font-size: 16px;
    color: #FF731E;
    font-weight: 600;
    text-align: center;
    border: 2px solid #FF731E;
    border-radius: 8px;
    padding: 12px 0;
    background: #fff;
    transition: all .2s;
    cursor: pointer;
}

.new-calc__button:hover {
    transform: scale(1.01) translateY(-1px);
}

.new-calc__button_gray {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #F2F4F7;
    border-color: #F2F4F7;
    color: #475467;
    font-size: 12px;
    font-weight: 400;
}

.new-calc__button_gray:hover {
    background: #EAECF0;
    border-color: #EAECF0;
    color: #475467;
}

.new-calc__button_gray #text-view-adv-calc-off {
    display: none;
}

.new-calc__button_gray_active #text-view-adv-calc-on {
    display: none;
}

.new-calc__button_gray_active #text-view-adv-calc-off {
    display: inline-block;
}

.new-calc__button_gray_active .new-icon {
    transform: rotate(180deg);
}

.new-calc__button_fill {
    background: #FF731E;
    color: #fff;
}

.new-calc__button_fill:hover {
    background: #E04F16;
    border-color: #E04F16;
}

.new-calc__button--for-mobile{
    display: none;
}

.new-calc__link-help {
    display: block;
    text-decoration: none;
    color: #98A2B3;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

.new-calc__link-help:hover {
    text-decoration: underline;
}

.new-calc__question {
    position: absolute !important;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) !important;
    z-index: 2;
}

.new-calc__question .tooltip2__icon{
    width: 18px;
    height: 18px;
    background: url('/wp-content/themes/ecos-m/assets/img/new-calc/icon-question.svg') center center no-repeat;
    background-size: 18px;
}

.new-calc__table {
    display: flex;
    gap: 20px;
    border: 1px solid #EAECF0;
    border-left: none;
    border-right: none;
    padding: 4px 0;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 5px;
}

.new-calc__table:last-child {
    margin-bottom: 0;
}

.new-calc__table-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 5px 0;
}

.new-calc__table-row span {
    display: block;
    margin-bottom: 2px;
}

.new-calc__table-row .tooltip2__icon{
    background-image: url('data:image/svg+xml,<svg class="tooltip2__icon" width="14" height="14" viewBox="0 0 14 14" fill="%2398A2B3" xmlns="http://www.w3.org/2000/svg"><path d="M6.472 10.472V5.32H7.528V10.472H6.472ZM7 4.584C6.78667 4.584 6.62667 4.53067 6.52 4.424C6.41333 4.31733 6.36 4.16267 6.36 3.96C6.36 3.74667 6.41333 3.592 6.52 3.496C6.62667 3.38933 6.78667 3.336 7 3.336C7.17067 3.336 7.31467 3.38933 7.432 3.496C7.56 3.592 7.624 3.74667 7.624 3.96C7.624 4.17333 7.56 4.33333 7.432 4.44C7.31467 4.536 7.17067 4.584 7 4.584ZM7 13.88C6.09333 13.88 5.24 13.7093 4.44 13.368C3.64 13.0267 2.936 12.5573 2.328 11.96C1.73067 11.352 1.26133 10.648 0.92 9.848C0.578667 9.048 0.408 8.19467 0.408 7.288C0.408 6.37067 0.578667 5.51733 0.92 4.728C1.26133 3.928 1.73067 3.22933 2.328 2.632C2.936 2.024 3.64 1.54933 4.44 1.208C5.24 0.866666 6.09333 0.695999 7 0.695999C7.91733 0.695999 8.77067 0.866666 9.56 1.208C10.36 1.54933 11.0587 2.024 11.656 2.632C12.264 3.22933 12.7387 3.928 13.08 4.728C13.4213 5.51733 13.592 6.37067 13.592 7.288C13.592 8.19467 13.4213 9.048 13.08 9.848C12.7387 10.648 12.264 11.352 11.656 11.96C11.0587 12.5573 10.36 13.0267 9.56 13.368C8.77067 13.7093 7.91733 13.88 7 13.88ZM7 12.984C7.78933 12.984 8.52533 12.84 9.208 12.552C9.90133 12.2533 10.5093 11.8427 11.032 11.32C11.5547 10.7973 11.96 10.1947 12.248 9.512C12.5467 8.81867 12.696 8.07733 12.696 7.288C12.696 6.49867 12.5467 5.76267 12.248 5.08C11.96 4.38667 11.5547 3.77867 11.032 3.256C10.5093 2.73333 9.90133 2.328 9.208 2.04C8.52533 1.74133 7.78933 1.592 7 1.592C6.21067 1.592 5.46933 1.74133 4.776 2.04C4.09333 2.328 3.49067 2.73333 2.968 3.256C2.44533 3.77867 2.03467 4.38667 1.736 5.08C1.448 5.76267 1.304 6.49867 1.304 7.288C1.304 8.07733 1.448 8.81867 1.736 9.512C2.03467 10.1947 2.44533 10.7973 2.968 11.32C3.49067 11.8427 4.09333 12.2533 4.776 12.552C5.46933 12.84 6.21067 12.984 7 12.984Z"></path></svg>');
}

.new-calc__table-row b {
    color: #175CD3;
    font-weight: 400;
    text-transform: uppercase;
}

.new-calc__table-row b span {
    display: inline;
}

.new-calc__selectors {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.new-calc__selector {
    position: relative;
    width: 100%;
}

.new-calc__selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border: 1px solid #EAECF0;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
}

.new-calc__selector-header .new-icon {
    background-size: 13px;
    transition: all .2s;
}

.new-calc__selector-items {
    display: none;
    position: absolute;
    top: 45px;
    width: 100%;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #EAECF0;
    box-shadow: 1px 8px 20px #0000002e;
    box-sizing: border-box;
    z-index: 2;
    overflow: hidden;
}

.new-calc__selector-item {
    line-height: 45px;
    padding: 0 15px;
    cursor: pointer;
}

.new-calc__selector-item:hover {
    background: #f9f9f9;
}

.new-calc__selector_active .new-calc__selector-items {
    display: block;
}

.new-calc__selector_active .new-calc__selector-header .new-icon {
    transform: rotate(180deg);
}

.new-calc__blocks-data {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.new-calc__block-data {
    background: #EFF8FF;
    padding: 12px 16px;
    padding-bottom: 36px;
    border-radius: 8px;
}

.new-calc__block-data-header {
    font-size: 12px;
    color: #1D2939;
    font-weight: 600;
}

.new-calc__block-data-content {
    font-size: 30px;
    color: #101828;
    font-weight: 600;
    margin: 5px 0;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.new-calc__block-data-sub {
    color: #475467;
}

.new-calc__doc {
    display: flex;
    box-shadow: 0 2px 4px -2px #1018280F, 0 4px 8px -2px #1018281A;
    background: #fff;
    border-radius: 8px;
}

.new-calc__doc-button {
    display: flex;
    align-items: center;
    background: #53B1FD;
    border-radius: 8px;
    color: #fff;
    padding: 0 20px;
}

.new-calc__doc-button .icon-info-text {
    position: relative;
}

.new-calc__doc-button .icon-info-text:before {
    font-size: 20px;
}

.new-calc__doc-button .icon-info-text:after {
    content: attr(data-count);
    position: absolute;
    bottom: -7px;
    right: -7px;
    font-size: 12px;
}

.new-calc__doc-content {
    padding: 23px 21px;
    font-size: 14px;
    color: #475467;
    line-height: 22px;
}

.new-calc__doc-content p {
    margin: 0;
}

.new-calc__doc-content a {
    color: #1570EF;
    font-weight: 600;
    text-decoration: none;
}

/* input range */

.ui-widget-content {
    position: absolute;
    bottom: -4px;
    left: 15px;
    right: 15px;
    height: 4px;
    background: #B2DDFF;
    border-radius: 8px;
    cursor: pointer;
}

.ui-widget-header {
    position: absolute;
    height: 100%;
    background: #175CD3;
    border-radius: 8px;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #175CD3;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    outline: none;
}

/* new icon */

.new-icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    width: 20px;
    height: 20px;
}

.new-icon_double-arrow-right {
    background-image: url('/wp-content/themes/ecos-m/assets/img/new-calc/icon-double-arrow-right.svg');
}

.new-icon_arrow-down {
    background-image: url('/wp-content/themes/ecos-m/assets/img/new-calc/icon-arrow-down.svg');
}

.new-icon_arrow-down_blue {
    background-image: url('/wp-content/themes/ecos-m/assets/img/new-calc/icon-arrow-down_blue.svg');
}

.new-icon_play {
    background-image: url('/wp-content/themes/ecos-m/assets/img/new-calc/new-icon-play.svg');
    background-size: 20px;
}

.icon-info-text {
    font-style: normal;
}

.icon-info-text::before {
    content: 'ⓘ';
    font-size: 13px;
}

.new-calc__banner {
    display: block;
    max-width: 100%;
    border-radius: 12px;
    background: #fff;
    margin: 32px auto 0;
}

.new-calc__banner--mobile{
    display: none;
}

.new-block-disclaimer {
    text-align: center;
    padding: 48px 0;
    background: #fff;
    border-bottom: 1px solid #EAECF0;
}

.new-block-disclaimer__header {
    font-size: 20px;
}

.new-block-disclaimer p {
    color: #475467;
    font-size: 14px;
    line-height: 20px;
}

/* media new calc */

@media screen and (max-width: 1190px) {
    .new-calc__wrapper {
        padding: 40px 0;
    }

    .new-calc {
        gap: 16px;
    }

    .new-calc__block {
        padding: 15px;
    }
}

@media screen and (max-width: 990px) {
    .new-calc {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .new-calc__wrapper {
        padding: 30px 0;
    }

    .new-calc__block {
        width: 100%;
        min-height: auto;
    }

    .new-calc__block:last-child, #block-calculation {
        grid-column: span 2;
    }

    .new-calc__block_empty {
        padding: 30px;
    }

    .new-calc__block_inform {
        gap: 15px;
        padding: 10px 0 0 0;
    }

    .new-calc__block-data{
        padding-bottom: 12px;
    }
}

@media screen and (max-width: 680px) {

    .new-block-disclaimer {
        padding: 24px 0;
    }

    .new-block-disclaimer p {
        line-height: 18px;
        text-align: left;
    }

    .new-calc__inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 0;
    }

    .new-calc__block:last-child {
        margin-top: 16px;
    }

    #block-info-adv-calc {
        margin-bottom: 16px;
        display: block !important;
    }

    #block-adv-calc {
        display: block !important;
    }

    #adv-calc-button {
        display: none;
    }

    .new-calc__block_calc {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        padding-bottom: 0;
    }

    .new-calc__block_detailed {
        border-radius: 0;
        padding-bottom: 0;
    }

    .new-calc__button_fill-wrapper{
        display: block !important;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        padding-top: 0;
    }

    .new-calc__input:first-child {
        display: flex;
        flex-direction: column;
        grid-column: span 2;
        padding: 10px 15px;
    }

    .new-calc__input-header {
        font-size: 12px;
    }

    .new-calc__input-data {
        font-size: 14px;
    }

    .new-calc__input:first-child .new-calc__input-data {
        font-size: 18px;
    }

    .new-calc__input:first-child .new-calc__input-header {
        order: 2;
        margin-bottom: 0;
        margin-top: 5px;
    }

    .new-calc__input {
        padding: 6px 15px;
    }

    .new-calc {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .new-calc__block_inform {
        padding-top: 0;
        flex-direction: row;
        justify-content: start;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 10px;
        border-radius: 0;
    }

    .new-calc__block_inform::-webkit-scrollbar {
        display: none;
    }

    .new-calc__block_mining {
        margin-top: 20px;
    }

    .new-calc__block_mining .new-calc__header{
        font-size: 14px;
        line-height: 20px;
    }

    .new-calc__blocks-data{
        margin: 0;
    }

    .new-calc__button{
        margin-top: 8px;
    }

    .new-calc__block-detailed_mobile-toggle {
        display: flex;
    }

    .new-calc__block-detailed_content {
        display: none;
    }

    .new-calc__block-detailed_content_active {
        display: block;
        margin-bottom: 20px;
    }

    .new-calc__doc {
        min-width: 260px;
    }

    .new-calc__block_empty {
        padding: 0 15px;
        order: -1;
        text-align: center;
        border: none;
    }

    .new-calc__doc-content {
        display: flex;
        align-items: center;
        justify-content: start;
        padding: 16px;
        font-size: 12px;
        line-height: 16px;
    }

    .new-calc__block-text-header {
        line-height: 28px;
        font-size: 20px;
    }

    .new-calc__block-text {
        font-size: 14px;
        line-height: 20px;
        margin-top: 8px;
    }

    .new-calc__block-data-content,
    .new-calc__block-data-sub {
        text-align: center;
    }

    .new-calc__banner {
        margin-top: 16px;
    }

    .new-calc__banner--desktop{
        display: none;
    }

    .new-calc__banner--mobile{
        display: block;
    }

    .new-calc__adv-icon {
        display: block;
    }

    .new-calc__button--for-desktop{
        display: none;
    }

    .new-calc__button--for-mobile{
        display: block;
    }
}

#block-adv-calc, #block-calculation,
.new-calc__button_fill-wrapper {
    display: none;
}

/* new calc END */

/* How cloud mining START */

.how-cloud-mining__wrapper {
    background: #F2F4F7;
    padding: 64px 0;
}

.how-cloud-mining__title {
    color: #1D2939;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
}

.how-cloud-mining__subtitle {
    color: #475467;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}

.how-cloud-mining__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    padding: 55px 0;
}

.how-cloud-mining__tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.how-cloud-mining__tab .new-calc__doc {
    cursor: pointer;
    position: relative;
}

.how-cloud-mining__tab .new-calc__doc::before,
.how-cloud-mining__tab .new-calc__doc::after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -10px;
    transform: rotate(45deg);
    display: none;
}

.how-cloud-mining__tab .new-calc__doc::before {
    width: 20px;
    height: 20px;
    right: -46px;
    z-index: 1;
    background: #D0D5DD;
    border-radius: 0 0 0 4px;
}

.how-cloud-mining__tab .new-calc__doc::after {
    width: 20px;
    height: 20px;
    background: #F2F4F7;
    right: -47.5px;
    z-index: 4;
    border-radius: 0 0 0 3px;
}

.how-cloud-mining__tab .new-calc__doc-button span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
}

.how-cloud-mining__tab .new-calc__doc-content b {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    display: inline-block;
}

.how-cloud-mining__tab-content {
    display: none;
    position: absolute;
    border-radius: 12px;
    border: 1px solid #D0D5DD;
    width: calc(50% - 18px);
    top: 55px;
    bottom: 55px;
    right: 0;
    background: #F2F4F7;
    z-index: 3;
    color: #475467;
}

.how-cloud-mining__tab_active .new-calc__doc {
    background: #53B1FD;
}

.how-cloud-mining__tab_active .new-calc__doc-content {
    color: #fff;
}

.how-cloud-mining__tab_active .how-cloud-mining__tab-content {
    display: block;
}

.how-cloud-mining__tab_active .new-calc__doc::before,
.how-cloud-mining__tab_active .new-calc__doc::after {
    display: block;
}

.how-cloud-mining__info-tab {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #D0D5DD;
}

.how-cloud-mining__button {
    display: flex;
    align-items: center;
}

.how-cloud-mining__button .new-calc__button {
    padding: 12px 94px;
    margin: 0 auto;
    width: max-content;
}

.how-cloud-mining__wrapper .icon-mining-calc {
    display: none;
}

.how-cloud-mining__tab-content-text {
    position: relative;
    z-index: 4;
    background: #F2F4F7;
}

.how-cloud-mining__tab-content-top {
    margin: 0;
    padding: 35px 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.how-cloud-mining__tab-content-bottom {
    padding: 25px;
    border-radius: 12px;
    border-top: 1px solid #D0D5DD;
}

.how-cloud-mining__tab-content-bottom ul {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.how-cloud-mining__tab-content-bottom ul li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
}

.how-cloud-mining__tab-content-bottom ul li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url('/wp-content/themes/ecos-m/assets/img/new-calc/new-icon-ok.svg') no-repeat center;
    background-size: 20px;
}

.how-cloud-mining__tab-content-bottom-header {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #D0D5DD;
    padding-bottom: 16px;
}

.how-cloud-mining__tab-content-bottom-header::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url('/wp-content/themes/ecos-m/assets/img/new-calc/icon-arrow-circle-right.svg') no-repeat center center;
    background-size: 20px;
    transform: rotate(180deg);
}

.how-cloud-mining__info-tab-header {
    display: grid;
    grid-template-columns: 49px 1fr;
    gap: 24px;
}

.how-cloud-mining__info-tab-header-icon {
    border-right: 1px solid #344054;
    background: url('/wp-content/themes/ecos-m/assets/img/new-calc/icon-arrow-circle-right.svg') no-repeat center left;
}

.how-cloud-mining__info-tab-header-text {
    font-size: 19px;
}

.how-cloud-mining__info-tab-mockup {
    margin: 30px -25px -40px -25px;
}

.how-cloud-mining__info-tab-mockup img {
    width: 100%;
}

.how-cloud-mining__info-arrow-down {
    display: none;
    order: 2;
}

.how-cloud-mining__info-arrow-down::before {
    content: url('/wp-content/themes/ecos-m/assets/img/new-calc/icon-arrow-circle-right-blue.svg');
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

@media screen and (max-width: 1100px) {
    .how-cloud-mining__content {
        gap: 15px;
    }

    .how-cloud-mining__tabs {
        gap: 8px;
    }

    .how-cloud-mining__tab .new-calc__doc-content b {
        font-size: 18px;
    }

    .how-cloud-mining__tab .new-calc__doc-content p {
        font-size: 14px;
    }

    .how-cloud-mining__tab .new-calc__doc-content {
        padding: 15px;
        flex-direction: column !important;
        align-items: start !important;
    }

    .how-cloud-mining__tab-content {
        width: calc(50% - 8px);
        overflow: auto;
    }

    .how-cloud-mining__tab .new-calc__doc::before {
        right: -28px;
    }

    .how-cloud-mining__tab .new-calc__doc::after {
        right: -29.5px;
    }
}

@media screen and (max-width: 860px) {
    .how-cloud-mining__wrapper {
        padding: 32px 0;
    }

    .how-cloud-mining__wrapper .icon-mining-calc {
        display: block;
        margin: 0 auto 16px;
    }

    .how-cloud-mining__title {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 24px;
    }

    .how-cloud-mining__subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .how-cloud-mining__content {
        padding: 24px 0;
        flex-direction: column;
    }

    .how-cloud-mining__info-tab {
        order: 1;
    }

    .how-cloud-mining__tabs {
        order: 3;
    }

    .how-cloud-mining__tab-content {
        position: relative;
        top: 0;
        bottom: 0;
        width: 100%;
        margin-top: 18px;
        margin-bottom: 10px;
    }

    .how-cloud-mining__button .new-calc__button {
        width: 100%;
    }

    .how-cloud-mining__tab .new-calc__doc-content b {
        font-size: 16px;
        line-height: 18px;
        font-weight: 400;
        margin-bottom: 4px;
    }

    .how-cloud-mining__tab .new-calc__doc-content p {
        font-size: 12px;
        line-height: 16px;
    }

    .how-cloud-mining__tab .new-calc__doc-button span {
        width: 23px;
        height: 23px;
        font-size: 13px;
    }

    .how-cloud-mining__tab .new-calc__doc::before,
    .how-cloud-mining__tab .new-calc__doc::after {
        right: auto;
        top: auto;
        left: 23px;
    }

    .how-cloud-mining__tab .new-calc__doc::before {
        bottom: -29px;
        border-radius: 4px 0 0 0;
    }

    .how-cloud-mining__tab .new-calc__doc::after {
        bottom: -30.5px;
        border-radius: 3px 0 0 0;
    }

    .how-cloud-mining__tab-content-top {
        padding: 25px;
        font-size: 14px;
        line-height: 20px;
    }

    .how-cloud-mining__info-tab-header-text {
        font-size: 16px;
    }

    .how-cloud-mining__info-tab-header-icon {
        display: none;
    }

    .how-cloud-mining__info-tab-header {
        display: block;
    }

    .how-cloud-mining__info-tab-mockup {
        margin: 25px -25px -30px -25px;
    }

    .how-cloud-mining__info-arrow-down {
        display: block;
    }
}

/* How cloud mining END */

/* Cloud mining START */

.new-white-button {

}

.cloud-mining-cover {
    background: url('/wp-content/themes/ecos-m/assets/img/new-calc/cloud-mining-cover.jpeg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 60px 0;
}

.cloud-mining-cover a {
    color: #fff;
    text-decoration: none;
}

.cloud-mining-cover__header {
    font-size: 44px;
    font-weight: 600;
    line-height: 66px;
    letter-spacing: -0.02em;
    text-align: left;
}

.cloud-mining-cover__sub-header {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    text-align: left;
    max-width: 528px;
    margin-bottom: 25px;
    margin-top: 8px;
}

.cloud-mining-cover__buttons {
    display: flex;
    gap: 16px;
}

.cloud-mining-cover__link-how {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-white-button {
    padding: 10px 55px;
    background: #fff;
    color: #344054 !important;
    border-radius: 8px;
}

.cloud-mining-inform__wrapper {
    background: #F2F4F7;
    padding: 40px 0;
}

.cloud-mining-inform__items {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.cloud-mining-inform__item {
    position: relative;
    width: 33.333%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 150px;
}

.cloud-mining-inform__item::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -29px;
    background: #D0D5DD;
}

.cloud-mining-inform__item:last-child::after {
    display: none;
}

@media screen and (max-width: 920px) {
    .cloud-mining-inform__items {
        gap: 10px;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .cloud-mining-inform__items::-webkit-scrollbar {
        display: none;
    }

    .cloud-mining-inform__wrapper {
        padding: 0;
    }

    .cloud-mining-inform__item::after {
        right: -4px;
    }

    .cloud-mining-inform__item {
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 660px) {
    .cloud-mining-cover {
        padding: 35px 0;
        background-position: center right -300px;
    }

    .cloud-mining-cover__header {
        font-size: 26px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .cloud-mining-cover__sub-header {
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        text-align: left;
        max-width: 45%;
    }

    .cloud-mining-cover__link-how {
        font-size: 14px;
    }

    .cloud-mining-cover__buttons .new-white-button {
        display: none;
    }
}

/* Cloud mining START */

























