        body {
            -webkit-text-size-adjust: 100%;
            -moz-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        .ui-slider {
            height: 10px;
            margin-top: 8px;
            position: relative;
            background: linear-gradient(90deg, #00C6FB 0%, #005BEA 100%);
            border-radius: 10px;
        }

        .partner-calc {
            display: flex;
            width: 100%;
            margin: 0 auto;
            width: 1190px;
            padding-left: 15px;
            padding-right: 15px;
            flex-wrap: wrap;
            align-items: center;
            max-width: 100%;
        }

        .partner-calc__text {
            color: #333;
            font-size: 21px;
            font-family: 'Circe', Arial, sans-serif;
            line-height: 1.55;
            font-weight: 400;
        }

        .partner-calc-left {
            width: 660px;
            margin-right: 6vw;
        }

        .partner-calc__cost {
            color: #333333;
            font-size: 24px;
            font-family: 'Circe', Arial, sans-serif;
            line-height: 1.55;
            font-weight: 600;
        }

        .partner-slider__text {
            color: #777777;
            font-size: 15px;
            font-family: 'Circe', Arial, sans-serif;
            line-height: 1.55;
            font-weight: 400;
        }

        .col {
            flex-basis: 0;
            flex-grow: 1;
            padding-left: 15px;
            padding-right: 15px;
        }

        .col-auto {
            flex: 0 0 auto;
            padding-left: 15px;
            padding-right: 15px;
        }

        .row {
            margin-left: -15px;
            margin-right: -15px;
            display: flex;
            flex-wrap: wraper;
        }

        .slider-cost-row {
            padding-top: 10px;
            margin-bottom: 40px;
        }

        .slider-quantity-row {
            padding-top: 10px;
        }

        .ui-slider-handle {
            width: 50px;
            height: 50px;
            display: block;
            top: 50%;
            outline: 0;
            cursor: pointer;
            transform: translate(-50%, -50%);
            position: absolute;
            background-image: url("https://thumb.tildacdn.com/tild3539-6635-4662-b664-633432366137/-/cover/50x50/center/center/-/format/webp/btn-begun.png");
        }

        .calc-result__status {
            color: #777777;
            font-size: 20px;

            padding: 10px 0;
            font-family: 'Circe', Arial, sans-serif;
            font-weight: 400;
        }

        .calc-result__percent {
            color: #333333;
            padding: 10px 0;
            font-size: 24px;
            font-family: 'Circe', Arial, sans-serif;
            font-weight: 600;
            background-position: center center;
            border-color: transparent;
            border-style: solid;
        }


        .calc-result {
            padding: 10px 0;
            border-width: 10px;
            border-radius: 3000px;
            background-color: #fff;
            background-position: center center;
            border-color: #503c29;
            border-style: solid;
            width: 320px;
            height: 320px;
            display: flex;
            padding: 30px;
            box-sizing: border-box;
            line-height: 1.1;
            align-items: center;
            justify-content: center;
        }

        .calc-result[data-result=bronze] {
            border-color: #b06a00;
        }

        .calc-result[data-result=silver] {
            border-color: #cecece;
        }

        .calc-result[data-result=gold] {
            border-color: #faff00;
        }

        .calc-result__devider {
            height: 1px;
            background: #eeeeee;
            margin: 10px 0;
        }

        .calc-result-inner {
            width: 100%;
            text-align: center;
        }

        .calc-result__price {
            color: #333333;
            font-size: 30px;
            padding: 10px 0;
            font-family: 'Circe', Arial, sans-serif;
            font-weight: 600;
            border-style: solid;
        }

        .qa-wrapper {
            width: 700px;
        }

        .qa__question {
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            font-family: 'Circe', Arial, sans-serif;
            line-height: 1.3;
            padding: 22px 60px 22px 44px;
            position: relative;
        }

        .qa__question:after {
            content: '';
            top: 25px;
            right: 36px;
            width: 22px;
            height: 22px;
            position: absolute;
            transition: all .3s;
            background: url(https://static.tildacdn.com/tild6566-3032-4238-a231-643331646362/icon-angle-up-down.svg) no-repeat center;
        }

        .qa {
            margin-bottom: 22px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.05);
        }

        .qa:not(.open) .qa__question:after {
            transform: rotate(180deg);
        }

        .qa__answer {
            color: #fff;
            font-size: 21px;
            line-height: 1.55;
            height: auto;
            opacity: 1;
            overflow: hidden;
            visibility: visible;
            transition: all 0.3s linear;
            padding: 1px 85px 20px 44px;
            font-family: 'Circe', Arial, sans-serif;
        }

        .qa:not(.open) .qa__answer {
            visibility: hidden;
            opacity: 0;
            height: 0 !important;
            padding-bottom: 0;
        }