.idkbut {
    display: inline-block;
    position: relative;
    background-color: #12a7ac;
    border-radius: 15px;
    padding: 21px 42px 21px 25px;
    margin: 0px 0px 20px 8px;
    cursor: pointer;
    outline: none;
    transition: .3s;
    color: white;
    width: fit-content;
}

    .idkbut:after, .cbut:after {
        content: url(/weightloss/img/arrow.svg);
        position: absolute;
        top: 53%;
        transform: translateY(-50%);
        right: 20px;
        transition: .3s;
    }

#more-details {
    margin-top: 3px;
}

    #more-details textarea {
        padding-top: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: darkslategrey;
    }

.cbut {
    float: right;
    display: inline-block;
    position: relative;
    background-color: #12a7ac;
    border-radius: 15px;
    padding: 21px 42px 21px 25px;
    margin: 0px 8px 20px 0px;
    cursor: pointer;
    outline: none;
    transition: .3s;
    color: white;
    width: fit-content;
}

.step-left .btn-block {
    position: relative;
    top: 20px;
}
.progress {
    width: 100%;
    /*border-radius: 30px;
    border: 2px solid #8dd5d7;
    background-color: #f4f9fa;
    padding: 6px;*/
    margin-top: 20px;
}

@media(max-width: 767px) {
    .progress {
        margin-top: 30px;
    }
}

.quiz-pad {
    padding: 25px 0 0 0;
}

@media(max-width: 991px) {
    .quiz-pad {
        padding: 30px 0 0 0;
    }
}

.progress-value {
    height: 15px;
    background-color: #128fac;
    border-radius: 0;
}

@media(max-width: 767px) {
    .progress-value {
        height: 12px;
    }
}

.progress-titles {
    padding: 0 80px;
}

@media(max-width: 991px) {
    .progress-titles {
        padding: 0 50px;
    }
}

.progress-titles h6 {
    margin-top: 20px;
    margin-right: 20px;
}

.progress-cont {
    min-width: 700px;
    padding-bottom: 2px;
}

.progress-overflow {
    overflow-x: auto;
}
/****/

.steps-block {
    position: relative;
    width: fit-content;
    margin: auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 35px 30px;
}

@media(max-width: 991px) {
    .steps-block {
        padding: 32px 20px;
    }
}

@media(max-width: 500px) {
    .steps-block {
        padding: 27px 15px;
    }
}

.step-block {
    display: none;
}

.active.step-block {
    display: block;
}

.disable {
    opacity: 0.7;
    pointer-events: none;
}

.quiz-plant {
    max-height: 150px;
    position: absolute;
    z-index: 50;
    left: 0;
    top: 6%;
}

.step-continue {
    font-size: 20px;
    background-color: #12a7ac;
    padding-top: 23px;
    padding-bottom: 23px;
}

.step-continue img {
    max-height: 19px;
}

.step-continue:hover {
    background-color: #12ac5e;
}

.step-images {
    position: relative;
    width: 345px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media(max-width: 991px) {
    .step-images {
        width: 45%;
    }
}

@media(max-width: 767px) {
    .step-images {
        width: 80%;
        height: 350px;
        margin: 0 auto;
        margin-top: 20px;
    }
}

@media(max-width: 500px) {
    .step-images {
        width: 100%;
    }
}

.one-image {
    display: block;
    width: 400px;
    height: auto;
}

.step-image {
    border-radius: 12px;
    background-color: rgba(0,0,0,0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pos-right {
    background-position: right center;
}

.step-img1 {
    position: absolute;
    z-index: 300;
    left: 0;
    bottom: 40px;
    width: 170px;
    height: 170px;
}

.step-img2 {
    position: relative;
    z-index: 100;
    width: 68%;
    height: 100%;
}

@media(max-width: 767px) {
    .step-img2 {
        width: 70%;
    }
}

@media(max-width: 390px) {
    .step-img1 {
        width: 150px;
        height: 150px;
    }
    .step-img2 {
        width: 85%;
    }
}

.step-left {
    width: 100%;
    flex: 1 1;
    padding-right: 25px;
}

.step-content {
    min-height: max-content;
    margin-top: 32px;
}

.mt25.step-content {
    margin-top: 25px;
}

@media(max-width: 767px) {
    .step-left {
        flex: none;
        padding-right: 0;
    }
    .step-content {
        margin-top: 25px;
    }
}

.answer {
    display: block;
    position: relative;
    background-color: #12a7ac;
    border-radius: 15px;
    padding: 21px 42px 21px 25px;
    margin-top: 12px;
    cursor: pointer;
    outline: none;
    transition: .3s;
}

@media(max-width: 991px) {
    .answer {
        padding-left: 15px;
    }
}

.answer:hover {
    background-color: #12ac5e;
    transition: .3s;
}
.answer.selected {
    background-color: #fac828;
    transition: .3s;
}
.answer:after {
    content: url(../img/arrow.svg);
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    right: 20px;
    transition: .3s;
}

.answer:hover:after {
    right: 15px;
    transition: .3s;
}

@media(max-width: 991px) {
    .answer:after {
        right: 15px;
    }
    .answer:hover:after {
        right: 10px;
    }
}

.answer:first-child {
    margin-top: 0;
}

.answer p {
    font-family: 'Serifa-Bold';
    font-size: 17px;
    color: #fff;
    line-height: 1.3;
}

@media(max-width: 500px) {
    .answer p {
        font-size: 16px;
    }
}

.answer .answer-sub {
    font-family: 'Helveticaneuecyr-Roman';
    font-size: 16px;
    margin-top: 7px;
}

.step-subtitle {
    font-family: 'Helveticaneuecyr-Bold';
    font-size: 21px;
    line-height: 1.4;
}

.women {
    position: relative;
    z-index: 500;
}

.new-target {
    width: 100%;
    position: absolute;
    z-index: 700;
    left: 0;
    bottom: 0;
    background-color: #ffb800;
    border-radius: 15px;
    padding: 20px;
}

@media(max-width: 767px) {
    .new-target {
        position: relative;
    }
}

.new-weight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 65px;
    flex: 1 1;
    background-color: #fff;
    border-radius: 15px;
    margin-left: 15px;
}

.new-weight p {
    font-family: 'Helveticaneuecyr-Bold';
    font-size: 27px;
    line-height: 1;
}

@media(max-width: 767px) {
    .new-weight p {
      font-size: 25px;
    }
    .women {
        max-height: 250px;
    }
}

@media(max-width: 410px) {
    .new-target p {
        width: 100%;
        text-align: center;
    }
    .new-weight {
        flex: none;
        margin-left: 0;
        margin-top: 20px;
    }
}
/*
.client-info {
    padding-top: 15px;
}*/