/* CALCULATOR */

:root {
    --main-calc-color: #d8166d;
    --add-calc-color: #13a1a2;
    --top-nav-size: 53px;
    --top-nav-margin: 75px;
    --show-menu-height: 812px;
}
.blinking-border {
    border: 2px solid var(--main-calc-color);
    border-radius: 3px;
    animation: border-blink 2s infinite;
}

@keyframes border-blink {
    0% {
        border-color: var(--main-calc-color);
    }
    50% {
        border-color: transparent;
    }
    100% {
        border-color: var(--main-calc-color);
    }
}
body.calc-page.show_main_menu {
    height:var(--show-menu-height);
}
body.calc-page #note1 {
    display:none;
}
body.calc-page .bx-wrapper {
    padding-top:0;
}
body.calc-page .bx-aside-nav-control {
    color: #000;
    top: 60px;
    right: 0px;
    left: unset;
    height: 45px;
    width: 45px;
    z-index: 60;
}
body.calc-page .bx-aside-nav-control.bx-opened {
    color: #fff;
    top: 0px;
    z-index: 1750;
}
body.calc-page .bx-aside-nav-control.bx-opened .fa-bars {
    font-size: 0;
}
body.calc-page .bx-aside-nav-control.bx-opened .fa-times {
    font-size: 28px;
}
body.calc-page .bx-aside-nav {
    top: 0;
}
div.bx-content-back {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 50px;
}
div.bx-content-back p {
    text-align: center;
    font-size: 20px;
    color: #fff;
}
div.bx-content-back img {
    width: 80px;
    height: auto;
}
/*@media (max-height: 480px) and (orientation: landscape) {
    div.bx-content-back {
    display: flex;
    }
}*/
body.calc-page .bx-content-seection {
    padding: 0px !important;
    height: 100vh;
    background-color: #fff;
}
body.calc-page .bx-content-seection > div.row {
    margin: unset !important;
    height: 100vh;
}
body.calc-page .bx-content {
    padding: 0px !important;
    height: 100vh;
}
body.calc-page h1 {
    margin: unset;
    height: unset;
    font-size: unset;
    line-height: unset;
    text-align: unset;
    display: none;
}
body.calc-page h1.maintitle {
    display: flex;
    flex-direction: row;
    height: 55px;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--add-calc-color);
    color: #fff;
    z-index: 20;
    width: 100%;
    margin-top: 0;
    transition: .3s margin-top ease;
}
body.calc-page.show_main_menu h1.maintitle {
    /* position: absolute; */
    margin-top: -55px;
}
body.calc-page h1.maintitle div.calcr_title {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    min-width: 190px;
}
body.calc-page #bx_basketFKauiI {
    display: none;
}
body.calc-page .bx-footer-bottomline {
    display: none;
}
body.calc-page .bx-footer {
    display: none;
}
.news-detail-page.container
{
    padding-top: 0;
}
div.calcr {
    transform: scale(0);
    display: block;
    flex-direction: column;
    position: relative;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    /*height: calc(100vh - 100px);*/
    height: 700px;
    max-height: 700px;
    max-width: 480px;
    width: 100%;
    /* max-height: 860px; */
    overflow: hidden;
    /* overflow-y: scroll; */
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% calc(100% - 48px);
    background-size: 360px auto;
    transition: background-image .8s ease, background-position .4s ease, height .4s ease, transform .5s ease;
}

body.calc_ready div.calcr {
    transform: scale(1);
}

body.show_main_menu div.calcr,
body.calcr_help_window_show div.calcr {
    /* height:var(--show-menu-height); */
    overflow-y:auto;
    transition: unset;
    }

    div.calcr#calc_1 {
        background-position: 50% calc(100%);
        background-image: url('/about/razmer/img/2021.12-sized/bustgalter.jpg');
        background-size: 240px auto;
    }
    div.calcr#calc_2 {
        background-position: 50% calc(100%);
        background-image: url('/about/razmer/img/2021.12-sized/poyas-trusy.jpg');
        background-size: 230px auto;
    }
    div.calcr#calc_3 {
        background-position: 50% calc(100%);
        background-image: url('/about/razmer/img/2021.12-sized/kupalnik.jpg');
        background-size: 260px auto;
    }
    div.calcr#calc_4 {
        background-position: 50% calc(100%);
        background-image: url('/about/razmer/img/2021.12-sized/dorodovoy-bandazh.jpg');
        background-size: 280px auto;
    }
    div.calcr#calc_5 {
        background-position: 50% calc(100%);
        background-image: url('/about/razmer/img/2021.12-sized/poslerodovoy-bandazh.jpg');
        background-size: 280px auto;
    }
    div.calcr#calc_6 {
        background-image: url('/about/razmer/img/calc2-trusy.jpg');
        background-size: 360px auto;
        background-position: 50% calc(100%);
        background-image: url('/about/razmer/img/2021.12-sized/trusy.jpg');
        background-size: 260px auto;
    }
    div.calcr#calc_7 {
        background-position: 50% calc(100%);
        background-image: url('/about/razmer/img/2021.12-sized/mayka.jpg');
        background-size: 260px auto;
    }

div.calcr nav {
    z-index: 10;
}

nav.calc_add_calc {
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10 !important;
    margin-top: -30px;
    opacity: 0;
    transition: .5s margin ease, .5s opacity ease;
    overflow: hidden;
}
body:not(.show_main_menu) .calc_add_calc_show nav.calc_add_calc {
    margin-top: 0;
    opacity: 1;
}
nav.calc_add_calc > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    opacity: 0;
    /* transition: .5s opacity ease,.5s margin ease; */
    position: absolute;
    margin-top: -30px;
}
nav.calc_add_calc > div.active {
    opacity: 100;
    position: relative;
    margin-top: unset;
}
nav.calc_add_calc > div > span {
    background-color: var(--add-calc-color);
    width: 35px;
    height: 18px;
    border-radius: 20px;
    position:relative;
    margin-right: 7px;
    transition: .3s background-color ease;
    cursor: pointer;
    z-index: 11;
}
nav.calc_add_calc > div.checked > span {
    background-color: #909090;
}
nav.calc_add_calc > div > span span {
    content:"";
    position:absolute;
    top:2px;
    right: 2px;
    background-color: #fff;
    width: 14px;
    height: 14px;
    border-radius: 20px;
    transition: .3s right ease;
}
nav.calc_add_calc > div.checked span span {
    right: calc(100% - 16px);
}
nav.calc_add_calc div.calc_add_title {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
    padding: 0 7px 0 42px;
    margin-left: -44px;
    z-index: 10;
}
nav.calc_add_calc div.calc_add_tower {
    display: flex;
    transition: .4s top ease;
}
nav.calc_add_calc > div.checked div.calc_add_tower {}
nav.calc_add_calc div.calc_add_tower > span {
    line-height: unset;
    font-weight: bold;
    font-size: 0;
    transition: .3s font-size ease;
    word-break: keep-all;
}
nav.calc_add_calc div.calc_add_tower > span.active {
    font-size: 14px;
}
nav.calc_add_calc div.calc_add_tower.no_animation > span {
    transition:unset !important;
    color: #000;
}
nav.calc_add_calc div.calc_add_calc_line.checked div.calc_add_tower.no_animation > span {
    color: #999;
}
div.calcr nav.calcr_left {
    position: absolute;
    top: 125px;
    left: 0px;
    width: 100px;
    display: flex;
    flex-direction: column;
    opacity: .7;
}
div.calcr nav.calcr_left a.calcr_logo {
    width: 100%;
    height: 50px;
    background-image: url('/about/razmer/img/mama-fest-club-logo.png');
    background-size: calc(100%) auto;
    background-repeat: no-repeat;
    background-position: 50%;
}

div.calcr nav.calc_top {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    z-index: 102;
    transition: .3s background-color ease, .3s height ease;
}
div.calcr nav.calc_top .calcr_close_window {
    top: -40px;
}
div.calcr nav.calc_top div.nav_calc {
    width: 43px;
    height: 43px;
    outline: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 4px;
    margin-right: 4px;
}
div.calcr nav.calc_top div.nav_away {
    display:none;
}
div.calcr nav.calc_top span.nav_calc_icon {
    background-size: calc(100% - 8px) auto;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: #eee;
    border: #ccc solid 1px;
    outline: unset;
    z-index: 20;
}
div.calcr nav.calc_top.calc_top_disabled div.nav_calc:not(.calc_top_act) {
    opacity:.2;
}
div.calcr nav.calc_top div.nav_calc.calc_top_act span.nav_calc_icon {
    border: var(--main-calc-color) solid 1px;
    box-shadow: var(--main-calc-color) 0 0 5px;
}
div.calcr nav.calc_top div.nav_calc.calc_top_1 span.nav_calc_icon {
    background-image: url('/about/razmer/img/01.png');
    background-size: calc(100% - 6px) auto;
}
div.calcr nav.calc_top div.nav_calc.calc_top_2 span.nav_calc_icon {
    background-image: url('/about/razmer/img/02-2.png');
    background-position: 50% calc(50% + 2px);
    background-size: calc(100% - 12px) auto;
}
div.calcr nav.calc_top div.nav_calc.calc_top_3 span.nav_calc_icon {
    background-image: url('/about/razmer/img/03.png');
    background-size: calc(100% - 5px) auto;
}
div.calcr nav.calc_top div.nav_calc.calc_top_4 span.nav_calc_icon {
    background-image: url('/about/razmer/img/04.png');
    background-size: calc(100% - 5px) auto;
    background-position-x: calc(0% + 1px);
}
div.calcr nav.calc_top div.nav_calc.calc_top_5 span.nav_calc_icon {
    background-image: url('/about/razmer/img/05.png');
    background-size: calc(100% + 2px) auto;
}
div.calcr nav.calc_top div.nav_calc.calc_top_6 span.nav_calc_icon {
    background-image: url('/about/razmer/img/06-2.png');
    background-size: calc(100% - 4px) auto;
}
div.calcr nav.calc_top div.nav_calc.calc_top_7 span.nav_calc_icon {
    background-image: url('/about/razmer/img/07.png');
    background-size: calc(100% - 16px) auto;
    background-position-x: calc(50% - 1px);
}
div.calcr nav.calc_top div.nav_calc span.nav_calc_title {
    font-size: 0;
    z-index: 19;
}
div.calcr nav.calc_top div.nav_calc span.nav_calc_add {
    font-size: 0;
    z-index: 19;
    color: #fff;
}

    body.show_main_menu div.calcr nav.calc_top {
    background-color: #13a1a2;
    margin-left: 0;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    /* overflow-y: scroll; */
    }
    body.show_main_menu div.calcr nav.calc_top .calcr_close_window {
        top: 10px;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_calc,
    body.show_main_menu div.calcr nav.calc_top div.nav_away {
        margin: 12px 20px;
        width: calc(100% - 40px);
        min-height: 46px;
        height: unset;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_calc.calc_top_1 {
        margin-top:60px;
    }
    body.show_main_menu div.calcr nav.calc_top span.nav_calc_icon {
        width: 46px;
        height: 46px;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_calc.calc_top_act span.nav_calc_icon {
    box-shadow: var(--main-calc-color) 0 0 15px;
    }
    body.show_main_menu div.calcr nav.calc_top span.nav_calc_title {
    /* margin-left: 0; */
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    text-decoration: none;
    width: calc(100% - 70px);
    margin-left: 15px;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_calc.calc_top_act span.nav_calc_title {
    /* color: #ffffff; */
    text-shadow: var(--main-calc-color) 1px 1px 1px;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_calc span.nav_calc_add {
        font-size: 14px;
        z-index: 19;
        width: 100%;
        padding-left: 70px;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_away {
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_away span.nav_calc_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d8166d9e;
    border-color: #8f8f8f00;
    width: 35px;
    height: 35px;
    margin-left: 4.5px;
    margin-right: 4.5px;
    font-size: 17px;
    }
    body.show_main_menu div.calcr nav.calc_top div.nav_away span.nav_calc_title {
    /* color: #ff97c5; */
}

div.calcr nav.calcr_right {
    position: absolute;
    top: 125px;
    right: 5px;
    width: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
}
div.calcr nav.calcr_right > div {
    color: #000;
    font-size: 24px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
div.calcr nav.calcr_right div i {
    line-height: 35px;
    vertical-align: middle;
}
div.calcr nav.calcr_right .calcr_help {
    font-size:18px;
}
body.pulsing div.calcr nav.calcr_right .calcr_help {
    animation-name: pulsing;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes pulsing {
  0% {
    color: #000;
  }
  50% {
    color: red;
  }
  100 {
    color: #000;
  }
}
div.calcr nav.calcr_right .calcr_help i {
}
div.calcr nav.calcr_right .calcr_bars {
    display: none;
}
div.calcr nav.calcr_right .calcr_bars i {
}

nav.calcr_right,
nav.calcr_left {
    transition: .5s top ease;
}
.calc_add_calc_show nav.calcr_right,
.calc_add_calc_show nav.calcr_left {
    top: 155px !important;
}

div.calcr div.calcr_back {
    position: absolute;
    top: -0px;
    bottom: 0;
    /* height: 100vh; */
    left: 0;
    right: 0;
    background-color: #000000bf;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 0;
    transform: scale(0);
    /* overflow-y: scroll; */
}
body.calcr_help_window_show div.calcr div.calcr_back {
    opacity: 1;
    z-index: 102;
    transform: scale(1);
}
div.calcr div.calcr_help_window {
    background-color: #fff;
    /* margin: 20px; */
    padding: 15px;
    /* border-radius: 5px; */
    /* overflow-y: scroll; */
    /* min-height: calc(100100% - 30px); */
    /* height: 100%; */
    padding-top: 40px;
    /* z-index: 102; */
}
div.calcr div.calcr_help_window p.pulsing-warning {
    /* margin-top:30px; */
    color:red;
    display:none;
}
body.pulsing div.calcr div.calcr_help_window p.pulsing-warning {
    display:block;
}
div.calcr div.calcr_help_window > div {
    margin-bottom: 20px;
}
div.calcr div.calcr_help_window video {
    margin-bottom: 10px;
}
div.calcr div.calcr_help_window > div span {

}
div.calcr div.calcr_help_window > div label {
    margin-left: 35px;
    line-height: 26px;
}
div.calcr div.calcr_help_window > div p {

}
div.calcr div.calcr_close_window {
    position:absolute;
    top: 5px;
    right: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s top ease;
}
div.calcr div.calcr_close_window p {
    margin: 0;
    margin-right: -18px;
    padding: 1px 25px 3px 10px;
    background-color: var(--add-calc-color);
    border: #ffffff69 solid 1px;
    color: #fff;
    border-radius: 15px;
    /* text-decoration: underline; */
}
div.calcr div.calcr_help_window_show div.calcr_close_window p {
    display:none;
}
div.calcr div.calcr_close_window span {
    display: block;
    width:30px;
    height:30px;
    background-color: #000;
    border: #fff solid 1px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height:27.5px;
    border-radius: 15px;
}
div.calcr div.forms {
    display: flex;
    width: calc(100%) !important;
    height: 100%;
}
form#calcr {
    width: calc(100%) !important;
    max-width: 100% !important;
    height: 100%;
    justify-content: flex-start;
    margin: unset;
}
div.calcr_lines {
    padding-bottom: 15px;
    width: 100%;
    /* display: none; */
    }
div.calcr_line {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    position: relative;
    transform: scale(1);
    transition: .3s transform ease;
}
div.calcr_line.hidden {
    /* display:none; */
    transform: scale(0);
}
span.calcr_block_num {
    font-size: 16px;
    font-weight: bold;
    background-color: #ffffff;
    border: var(--main-calc-color) solid 2px;
    color: var(--main-calc-color);
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 15px;
    margin-top:-3px;
    align-self: flex-start;
    z-index: 3;
    position: absolute;
}
div.calcr_block_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(100%);
    min-height: 46px;
    padding: 2px 5px 2px 60px;
    background-color: #fff;
    /* background-color: var(--add-calc-color); */
    z-index: 2;
}
div.calcr_block_content label {
    margin-bottom: 0;
    padding-right: 15px;
    padding: 5px 15px 5px 0px;
    font-size: 15px;
    line-height: 17px;
    font-weight: bold;
    color: #fff;
}
div.calcr_block_content label small {

}
div.calcr_block_content input {
    text-align: center;
    border: #000000 solid 1px;
    color: var(--main-calc-color);
    font-size: 17px;
    font-weight: bold;
    padding: 2px 0px 0px 0px;
    max-width: 70px;
    /* position: absolute; */
    /* right: 15px; */
}
div.calcr_block_content span {
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    width: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: yellow;
    cursor: pointer;
}
div.calcr_block_content p {
    line-height: 17px;
    font-size: 14px;
    margin: 0px;
    display: none;
    transition: all 0.3s ease;
    position: absolute;
    top: 60px;
    left: 15px;
    right: 15px;
    padding: 15px;
    border: #555 solid 1px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 30;
}
div.calcr_block_content p:before {
    content:"";
    position:absolute;
    width:15px;
    height:30px;
    border: 7px solid transparent; border-bottom: 7px solid white;
    top:-30px;
}
div.calcr_block_content p > span {
    position:absolute;
    display: block;
    width:30px;
    height:30px;
    top: -10px;
    right: -10px;
    background-color: #000;
    border: #fff solid 1px;
    color: #fff;
    text-align: center;
    font-size: 17px;
    border-radius: 15px;
}
    /*div.calcr[class="calcr show_ansewer_cline1"] div.calcr_line.cline1,
    div.calcr[class="calcr show_ansewer_cline2"] div.calcr_line.cline2 {
        z-index:30;
    }
    div.calcr[class="calcr show_ansewer_cline1"] div.calcr_line.cline1 p,
    div.calcr[class="calcr show_ansewer_cline2"] div.calcr_line.cline2 p {
        display: block;
    }*/
div.result_item_result {
    margin-left: 0px;
    padding: 0 5px;
    background-color: var(--add-calc-color);
    color: #fff;
    font-weight: bold;
    width: 100vw;
    max-width: 480px;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 0px;
    z-index: 10;
    position: fixed;
    bottom: 0;
    display: none;
}
div.calcr_result_txt {
    font-size: 16px;
    line-height: 23px;
    width: calc(100% - 100px);
    padding-left: 10px;
    text-align: left;
    transition: .6s width ease;
}
div.calcr_result_txt h1 {
    margin: unset;
    height: unset;
    font-size: unset;
    font-weight: bold;
    line-height: unset;
    text-align: unset;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    position:relative;
}
body.calc-page h1 p {
    margin: unset;
    font-size: 17px;
    height: 20px;
}
h1.maintitle div.calcr_txt_tower_back {
    height: 22px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
h1.maintitle div.calcr_txt_tower {
    position:absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .6s top ease;
    top: -23px;
    top: 0;
    width: 100%;
}
h1.maintitle div.calcr_txt_tower > span {
    width: 100%;
    height: 22px;
    line-height: 22px;
    font-size: 17px;
    overflow: hidden;
    text-align: right;
}
h1.maintitle div.calcr_txt_tower > span#restxt_5 {
    font-size: 16px;
}
body.calc-page h2 {
    margin: unset;
    font-size: unset;
    display: flex;
    align-items: center;
}
body.calc-page h2 i {
    margin: unset;
    font-size: unset;
    line-height: 30px;
    margin-right: 7px;
}
body.calc-page h2 p {
    margin: unset;
    font-size: unset;
    height: 23px;
}
div.calcr_result_txt span.restxt_act {
    font-size:16px;
}
div.calcr_result_val {
    width: 100px;
    margin: 0 7.5px 0 10px;
    background-color: #fff;
    color: var(--main-calc-color);
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    position:relative;
    overflow: hidden;
    transition: .6s width ease;
}
div.calcr_result_val div.calcr_result_tower {
    position:absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: .6s top ease;
    top: 0;
    width: 100%;
}
div.calcr_result_val div.calcr_result_tower > div {
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
div.calcr_r {
    font-size: 20px;
    line-height: 40px;
    height: 100%;
    position: relative;
    transition: .3s font-size ease;
}
div.calcr_r u {
    font-size: 15px;
    line-height: 16px;
    position: absolute;
    top: calc(50% - 18px);
    left: calc(100% - 36.5px);
    text-decoration:none;
}
form#calcr:not(.show_res_add) > div.calcr_res_add {
    bottom:0px;
    opacity: 0;
}
form#calcr:not(.show_res_add) div.calcr_result_val div.calcr_res_add,
div.calcr:not(#calc_1) div.calcr_result_val div.calcr_res_add {
    transform:scale(0);
    margin-right:0;
    width: 0;
}
div#calc_1 div.calcr_result_val div.calcr_res_add {
    color: #000;
    margin-right: 5px;
    transition: .3s all ease;
    width:unset;
    display: none;
}
form#calcr > div.calcr_res_add {
    align-self: flex-start;
    justify-content: flex-end;
    padding: 5px 15px;
    line-height: 16px;
    font-size: 13px;
    transition: .3s all ease;
    z-index:9;
    opacity: 1;
    display: none;
    position: absolute;
    bottom: 60px;
    background: #eee;
}
form#calcr > div.calcr_res_add span {

}
form#calcr > div.calcr_res_add span.calcr_res_add_mark {
    font-weight: bold;
    padding-right: 3px;
    color: var(--main-calc-color);
    display: none;
}
form#calcr > div.calcr_res_add span.calcr_res_add_txt {text-align: right;display: block;}
div.calcr_img {
    width: 100%;
    /* height: calc(100% - 170px); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

div.noui_slider  {
    margin-top: 30px;
    width: 100%;
}
div.noui_slider .calcr-angle {
    position: absolute;
    top: -6px;
    width: 16px;
    height: 16px;
    font-size: 14px;
    line-height: 15px;
    font-weight: bold;
    text-align: center;
    box-shadow: #fff 1px 1px 0px;
    border-radius: 10px;
    background-color: var(--main-calc-color);
    color: #fff;
    opacity: 1;
    transition:.3s all ease;
    cursor: pointer;
}
div.noui_slider .calcr-angle.calcr-angle-left {
    left: -25px;
}
div.noui_slider .calcr-angle.calcr-angle-right {
    right: -25px;
}
div.noui_slider .calcr-angle-hidden {
    opacity:0;
}

.sliders {
    position: absolute;
    bottom: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.inputs {
    position: absolute;
    top: 300px;
    right: 20px;
    width: 100px;
}
.inputs input {
    /* width: 100%; */
}
.noUi-connects {
    transition:.3s all ease;
}
.calcr_help_hand {
    position: absolute;
    top: 15px;
    left: -20px;
    z-index: 50;
    font-size: 0;
    width: 50px;
    height: 50px;
    background-image: url('/about/razmer/img/single-tap.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    transform: scale(1.5);
    opacity: 0;
}
.calcr_help_hand_ready {
    transition: 0.5s all ease;
    transform: scale(1);
    opacity: 1;
}
.calcr_help_hand_move {
    transition: 1s all ease;
    left: calc(100% - 20px);
}
.calcr_help_hand_hide {
    opacity: 0;
    transition: 0.5s all ease;
}
.sliders .noui_slider {
    position: absolute;
    opacity:0;
    transform: scale(0);
    transition: .8s all ease;
    z-index: 100;
}
.sliders .noui_slider .inputs {
    display: flex;
    align-items: flex-end;
    position: absolute;
    right: -20px;
    top: -32px;
    width:65px;
    border: #999 solid 1px;
    border-radius: 4px;
    background-color: #fff;
    /* -webkit-transform: translate(-50%, 0%); */
    /* transform: translate(-50%, 0%); */
    /* left: 50%; */
    /* bottom: 128%; */
}
.sliders .noui_slider.calcr-vert-mirror .inputs {
    top: 30px;
}
.sliders .noui_slider .inputs:before {
    content:"";
    position:absolute;
    width: 6px;
    height: 6px;
    background-color:white;
    border: 1px solid #999;
    border-color: #999 #999 transparent transparent;
    bottom:-4px;
    left:calc(50% - 3.0px);
    transform:rotate(135deg);
}
.sliders .noui_slider.calcr-vert-mirror .inputs:before {
    border-color: transparent transparent #999 #999;
    bottom:unset;
    top:-4px;
}
.sliders .noui_slider .inputs input {
    width: 40px;
    color: #000;
    padding: 3px 0px;
    padding-right: 2px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    border: unset;
    background-color: #fff0;
}
.sliders .noui_slider .inputs input:active,
.sliders .noui_slider .inputs input:focus {
    border:unset;
    outline:unset;
}
.sliders .noui_slider input::-webkit-outer-spin-button,
.sliders .noui_slider input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.sliders .noui_slider input[type=number] {
    -moz-appearance: textfield;
}
.sliders .noui_slider .inputs span {
    margin-right: 7px;
    color: #000;
    opacity: .7;
    font-size: 13px;
    padding-bottom: 1px;
}
.sliders .noui_slider.slider_show {
    opacity:1;
    transform: scale(1);
}
.sliders .noui_slider.slider_1 .noUi-handle:before {
  content:"1";
}
.sliders .noui_slider.slider_2 .noUi-handle:before {
  content:"2";
}

.sliders .noui_slider.slider_2 {
}

.sliders .noui_slider .noUi-pips-horizontal {
    top: calc(100% - 20px);
}
.sliders .noui_slider .noUi-value-horizontal {
    transform: translate(-50%, -80%);
    font-size: 14px;
    /* background-color: #fff; */
}
.sliders .noui_slider.calcr-vert-mirror .noUi-pips-horizontal {
    top: calc(100%);
}
.sliders .noui_slider.calcr-vert-mirror .noUi-value-horizontal {
    transform: translate(-50%, 60%);
}
.sliders .noui_slider.calcr-vert-mirror .noUi-tooltip {
    bottom: unset;
    top: 132%;
}
.sliders .noui_slider.calcr-vert-mirror .noUi-tooltip:before {
    bottom:unset;
    top:-3px;
    transform:rotate(-45deg);
}

    div.calcr#calc_1 .noui_slider.slider_1 {
    top: -67px;
    width: 156px;
    margin-left: -2px;
    }
    div.calcr#calc_1 .noui_slider.slider_2 {
    top: -35px;
    width: 137px;
    margin-left: -13px;
    }

    div.calcr#calc_2 .noui_slider.slider_1 {
    top: 15px;
    margin-left: 18px;
    width: 120px;
    }
    div.calcr#calc_2 .noui_slider.slider_2 {
    top: 118px;
    margin-left: -0px;
    width: 165px;
    }
    div.calcr#calc_3 .noui_slider.slider_1 {
    top: -64px;
    margin-left: -15px;
    width: 160px;
    }
    div.calcr#calc_3 .noui_slider.slider_2 {
    top: 128px;
    width: 184px;
    margin-left: -8px;
    }
        div.calcr#calc_3 span.calcr_block_num {
            border-color: var(--add-calc-color);
            color: var(--add-calc-color);
        }
        div.calcr#calc_3 .noUi-handle {
        border-color: var(--add-calc-color);
        color: var(--add-calc-color);
        }
        div.calcr#calc_3 .noUi-connects {
        background-color: var(--add-calc-color);
        }
        div.calcr#calc_3 .noUi-tooltip {
        border-color: var(--add-calc-color);
        }
        div.calcr#calc_3 .noUi-tooltip:before {
        border-color: var(--add-calc-color) var(--add-calc-color) transparent transparent;
        }
        div.calcr#calc_3 div.noui_slider .calcr-angle {
        border-color: var(--add-calc-color);
        }
        div.calcr#calc_3 div.calcr_result_txt,
        div.calcr#calc_6 div.calcr_result_txt,
        div.calcr#calc_7 div.calcr_result_txt {
        width: calc(100% - 150px);
        }
        div.calcr#calc_3 div.calcr_result_val,
        #calcr_result_3,
        div.calcr#calc_6 div.calcr_result_val,
        #calcr_result_6,
        div.calcr#calc_7 div.calcr_result_val,
        #calcr_result_7 {
        width: 150px;
        }
        div.calcr#calc_3 div.calcr_r,
        div.calcr#calc_6 div.calcr_r,
        div.calcr#calc_7 div.calcr_r {
        font-size: 16px;
        line-height: 40px;
        }
    div.calcr#calc_4 .noui_slider.slider_1 {
    top: 131px;
    margin-left: -2px;
    width: 172px;
    }
    div.calcr#calc_4 .noui_slider.slider_2 {
    top: 200px;
    width: 145px;
    }
    div.calcr#calc_5 .noui_slider.slider_1 {
    top: 118px;
    margin-left: -22px;
    width: 180px;
    }
    div.calcr#calc_6 .noui_slider.slider_1 {
    top: 103px;
    margin-left: -18px;
    width: 175px;
    }
    div.calcr#calc_7 .noui_slider.slider_1 {
    top: -65px;
    margin-left: -6px;
    width: 158px;
    }

    input.s2 {
        font-size:0px;
        width:0px;
        height:0px;
    }

    nav.calc_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 5px;
    }

    #go-back {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 30px;
        opacity: .5;
    }
    #go-back i {
    }
    #go-back span {
    font-size: 16px;
    display: none;
    }

    .go_to_forum {
    font-size: 13px;
    line-height: 30px;
    color: #fff;
    background-color: var(--add-calc-color);
    text-decoration: none;
    border-radius: 15px;
    padding: 0 10px;
    opacity: .8;
    }

    .ya-share2 {
    }
    .ya-share2__list {
        display: flex !important;
    }
    .ya-share2__list .ya-share2__item a {opacity: .5;}
    .ya-share2__badge {
        border-radius: 15px !important;
    }
    ul:not(.ya-share2__popup-tile) > li > a > span > .ya-share2__icon {
    width: 30px !important;
    height: 30px !important;
    background-size: 30px 30px !important;
    }

.ak-loader {
    width: 60px;
    height: 60px;
    position: absolute;
    top: calc(50% - 30px);
    right: calc(50% - 30px);
    margin: 0 auto;
}
/*.ak-loader:after{
  content:"";
  color:#555;
  font-size:10px;
  position:absolute;
  z-index:2;
  bottom:-20px;
  width:42px;
  text-align:center;
  left:calc(50% - 21px);
  }*/
.ak-loader > div {
  border-radius:30px;
  position:absolute;
  border-width:2px;
  border-style:solid;
  border-color:transparent;
  opacity:.5
  }
.ak-loader .loader-line1{
  border-top-color:var(--main-calc-color);
  width:100%;
  height:100%;
  -webkit-animation:spin1 .5s linear infinite;
  -moz-animation:spin1 .5s linear infinite;
  animation:spin1 .5s linear infinite
  }
.ak-loader .loader-line2{
  border-top-color: var(--add-calc-color);
  width:80%;
  height:80%;
  left:10%;
  top:10%;
  -webkit-animation:spin1 .75s linear infinite;
  -moz-animation:spin1 .75s linear infinite;
  animation:spin1 .75s linear infinite;
  }
.ak-loader .loader-line3{
  border-top-color: #8e8e8e;
  width:60%;
  height:60%;
  left:20%;
  top:20%;
  -webkit-animation:spin1 1.25s linear infinite;
  -moz-animation:spin1 1.25s linear infinite;
  animation:spin1 1.25s linear infinite;
  }

  @-moz-keyframes spin1{
    100%{-moz-transform:rotate(360deg)}
  }

  @-webkit-keyframes spin1{
    100%{-webkit-transform:rotate(360deg)}
  }

  @keyframes spin1{
    100%{
      -webkit-transform:rotate(360deg);
      transform:rotate(360deg)
    }
  }


@media(min-width: 768px) {
    body.calc-page {
        align-items: center;
        background-color: #eee;
    }
    div.calcr {
    border-radius: 7px;
    border: #989898 solid 2px;
    /* outline: #fff solid 2px; */
    box-shadow: #9999998c 0 0 20px;
    max-height: 860px;
    }
}

@media(min-width:375px) {
    div.calcr nav.calcr_left a.calcr_logo {
    }
    div.calcr nav.calc_top {
    }
    div.calcr nav.calc_top div.nav_calc {
    width: 47px;
    height: 47px;
    margin-left: 3px;
    margin-right: 3px;
    }
}

@media(min-width:481px) {
    body.calc-page .bx-aside-nav-control {
        right: unset;
        left: 435px;
    }
}